MYSQL connection suddenly breaks?

Hello, I'm trying out a Minecraft plugin with a MYSQL database for the first time, but unfortunately I'm not quite getting it to work. Basically, I only enter the command once, and the connection is lost. What's wrong? My code: https://pastebin.com/ze70QCSj
MYSQLManager: https://pastebin.com/T9LUZw1B
Error: https://pastebin.com/9fwxGSuv

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
9 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
DonkeyShot
1 year ago

If I didn’t overlook anything…

According to Exception, the error is in line 75, but your code only goes up to line 73. Since it occurs in Risecoins2.updateBalance, which in turn calls prepareStatement, the error line can still be defined. However, it is not obvious where the connection is opened at all. At least not in the posted code. Whether it is closed in the meantime, neither. The Variabel mySqlmanager is not occupied in the posted code at all. Only mysqlManager.getConnection is called, but the function returns only the field and opens nothing. The error can be somewhere outside.

DonkeyShot
1 year ago
Reply to  HanneZHD

Hm, that is, at first glance, the difference is that now the constructor of Risecoins2 is with it, in which the Connect is carried out. I’d be cleared. Otherwise, it also surprises me why the mistake comes. Is the connection even successful? Then “Connected to MySQL database” would have to be displayed, otherwise an exception. I can’t imagine anything else right now.

DonkeyShot
1 year ago

Problem still exists? I didn’t notice.

DonkeyShot
1 year ago

Sry, I don’t think about it anymore.

katzebiggi
1 year ago

Moin,

have you ever created a database and entered the data in your plugin? It looks like there’s a mistake.

Greetings from katzebiggi

katzebiggi
1 year ago
Reply to  HanneZHD

What a command, there is only phpmyadmin for database usage, because you will open the DB, but otherwise you do not need any commands to connect the plugin to the DB. Guess you’re making a mistake.