🛠️ 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
2 changed files with 19 additions and 18 deletions
Showing only changes of commit cd3ce709d9 - Show all commits

View File

@ -207,6 +207,7 @@ public class MySQLConnection {
/**
* Update something on your server by query
*
* @param query The query you want to execute
* @return this class
*/

View File

@ -25,24 +25,6 @@ public class SQLQuery {
}
/**
* Sets the new statement of the query
*
* @param statement The new query statement
*/
public void setStatement(String statement) {
this.statement = statement;
}
/**
* Sets the new parameters of the query
*
* @param parameters The new query parameters
*/
public void setParameters(Object[] parameters) {
this.parameters = parameters;
}
/**
* Gets the current statement of the query
*
@ -52,6 +34,15 @@ public class SQLQuery {
return statement;
}
/**
* Sets the new statement of the query
*
* @param statement The new query statement
*/
public void setStatement(String statement) {
this.statement = statement;
}
/**
* Gets the current query parameters
*
@ -61,6 +52,15 @@ public class SQLQuery {
return parameters;
}
/**
* Sets the new parameters of the query
*
* @param parameters The new query parameters
*/
public void setParameters(Object[] parameters) {
this.parameters = parameters;
}
@Override
public String toString() {
return "SQLQuery{" +