[DiscordArchive] I'm a little stuck on Step 4: Database Installation. Do I just use `mysql` CLI from the build dir an
[DiscordArchive] I'm a little stuck on Step 4: Database Installation. Do I just use `mysql` CLI from the build dir an
Archived author: Derrick • Posted: 2025-07-27T03:42:13.959000+00:00
Original source
I'm a little stuck on Step 4: Database Installation. Do I just use `mysql` CLI from the build dir and run the `create_mysql.sql` script?
Archived author: Mithria • Posted: 2025-07-27T07:36:41.021000+00:00
Original source
You can either open your database with something like heidisql and run the script using that, or by running it with mysql CLI. your choice
Archived author: Mithria • Posted: 2025-07-27T07:37:43.291000+00:00
Original source
if you use mysql CLI, its probably something along the lines of
`mysql -u root -p < create_mysql.sql`
Archived author: Mithria • Posted: 2025-07-27T07:37:59.176000+00:00
Original source
although idk if it differs on other operating systems, im on linux
Archived author: Tereneckla • Posted: 2025-07-27T07:40:21.705000+00:00
Original source
the mysql syntax should be the same