[DiscordArchive] do you need 8.0 for something specific or just experimenting with it?
[DiscordArchive] do you need 8.0 for something specific or just experimenting with it?
Archived author: Shin • Posted: 2019-08-16T21:35:47.692000+00:00
Original source
do you need 8.0 for something specific or just experimenting with it?
Archived author: stevej • Posted: 2019-08-16T21:35:49.609000+00:00
Original source
Apparently, mysql keys require that they have at least 1 uppercase letter, numbers and symbols. For example, this works for me.
Archived author: stevej • Posted: 2019-08-16T21:35:59.966000+00:00
Original source
```sql
mysql> CREATE USER 'acore'@'localhost' IDENTIFIED WITH mysql_native_password BY 'Acore@2019' WITH MAX_QUERIES_PER_HOUR 0;
Query OK, 0 rows affected (0,12 sec)
```
Archived author: stevej • Posted: 2019-08-16T21:36:54.048000+00:00
Original source
I don't know why I really installed version 8.0. I think Skyfire asked for it.
Archived author: stevej • Posted: 2019-08-16T21:48:02.930000+00:00
Original source
```sql
mysql> CREATE DATABASE `acore_world` CHARACTER SET utf8 COLLATE utf8_general_ci;
Query OK, 1 row affected, 2 warnings (0,20 sec)
```