Simple MySQL API
This is Simple MySQL API! Simple MySQL API makes easier for you to connect you Spigot or Bukkit Plugin with you MySQL Database. It never was so easy!
How to use the API
To use the API you have to add it as an external jar. It is the same as with the craftbukkit.jar or spigot.jar .
//Set the logindata
public MySQL mysql = new MySQL("Host", "Database", "Username", "Password");
// Get a simple connection to your MySQL database
mysql.Connect();
//Execute a query command
mysql.ExecuteCommand("QUERY COMMAND");
//Get a ResultSet from query
mysql.GetResult("QUERY COMMAND");
-
View User Profile
-
Send Message
Posted Apr 18, 2019Best API I've ever seen. THANK YOU