🛠️ 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 d48ebe05c0 - Show all commits

View File

@ -63,6 +63,11 @@ public class InsertManager {
connection.update(build()); connection.update(build());
} }
/**
* Builds the current statement
*
* @return the current statement
*/
private SQLQuery build() { private SQLQuery build() {
return connection.createQuery(InsertQuery.class) return connection.createQuery(InsertQuery.class)
.addParameter(QueryParameter.TABLE_NAME, tableName) .addParameter(QueryParameter.TABLE_NAME, tableName)