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

View File

@ -52,7 +52,7 @@ public class SelectionQuery extends AbstractQuery {
if (i == 0) whereString.append("WHERE"); if (i == 0) whereString.append("WHERE");
else whereString.append("AND"); else whereString.append("AND");
whereString.append("`"+whereList.keySet().toArray()[i]+"`").append("=").append("?"); whereString.append("`" + whereList.keySet().toArray()[i] + "`").append("=").append("?");
} }
return whereString.toString(); return whereString.toString();
@ -60,6 +60,7 @@ public class SelectionQuery extends AbstractQuery {
/** /**
* Gets the parameters * Gets the parameters
*
* @return the parameters * @return the parameters
*/ */
public Object[] getParameters() { public Object[] getParameters() {