SideProjectGuys / invite-manager-bot

A discord bot that tracks invites and much more
https://docs.invitemanager.co/
GNU General Public License v3.0
166 stars 136 forks source link

ER_NO_SUCH_TABLE when connecting to mysql #174

Open MartTo22 opened 4 years ago

MartTo22 commented 4 years ago

I keep getting a NO_SUCH_TABLE error when connecting to the mysql database, what should I do? image

chaun14 commented 3 years ago

run db scripts given in script/db folder

MartTo22 commented 3 years ago

How do I do that? (I’m kind of a noob with stuff like this sorry)

On Mon, Aug 31, 2020 at 09:36 chaun14 notifications@github.com wrote:

run db scripts given in script/db folder

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/SideProjectGuys/invite-manager-bot/issues/174#issuecomment-683891510, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQS7JNQORS4DZGSZZ5U7DZDSDPGSHANCNFSM4QJ2X2OA .

chaun14 commented 3 years ago

learn how to use mysql :/

SyntaxDragon commented 3 years ago
mysql -u root -p
*inserts password if authed*
CREATE DATABASE im_0;
use im_0;
source /root/invite-manager-bot/scripts/db/setup_db0.sql;

CREATE DATABASE im_1;
use im_1;
source /root/invite-manager-bot/scripts/db/setup_dbx.sql;

This is how I did it you might need to play around with it to make it work.

MartTo22 commented 3 years ago

Alright, thank you so much!

On Fri, Sep 11, 2020 at 13:23 dragonblitz10 notifications@github.com wrote:

mysql -u root -p

inserts password if authed

CREATE DATABASE im_0;

use im_0;

source /root/invite-manager-bot/scripts/db/setup_db0.sql;

CREATE DATABASE im_1;

use im_1;

source /root/invite-manager-bot/scripts/db/setup_dbx.sql;

This is how I did it you might need to play around with it to make it work.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/SideProjectGuys/invite-manager-bot/issues/174#issuecomment-691295348, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQS7JNWYLUHGPLZ7LGEMMP3SFKBMBANCNFSM4QJ2X2OA .