🛠️ Code cleanup & added many new features #1

Merged
gnmyt merged 121 commits from features/code-cleanup into master 2021-09-02 13:34:00 +00:00
Showing only changes of commit 7c07f7086e - Show all commits

View File

@ -205,6 +205,15 @@ public class MySQLConnection {
return this;
}
/**
* Update something on your server by query
* @param query The query you want to execute
* @return this class
*/
public MySQLConnection update(SQLQuery query) {
return update(query.getStatement(), query.getParameters());
}
/**
* Gets the {@link UpdateManager} for easier updating
*