Merge branch 'main' into lang_de

This commit is contained in:
2022-04-22 18:36:07 +02:00
15 changed files with 277 additions and 98 deletions

View File

@@ -183,6 +183,11 @@ public class Database {
}
}
public void run() throws SQLException {
compile().run();
}
/**
* set single value for a certain key
* @param key
@@ -194,6 +199,11 @@ public class Database {
return this;
}
public Request sort(String field) {
sortFields.add(field);
return this;
}
/**
* get the current (i.e. non-final) sql
* @return
@@ -251,11 +261,6 @@ public class Database {
list.add(value);
return this;
}
public Request sort(String field) {
sortFields.add(field);
return this;
}
}
public Database(Connection connection) {