v1.0.2 #368

Merged
greg6775 merged 10 commits from greg-dev into master 2020-02-06 02:24:07 +01:00
Showing only changes of commit 214b84d0c5 - Show all commits

View file

@ -51,11 +51,6 @@ public class Rethink {
}
}
public void disconnect() {
conn.close();
System.out.println("DISCONNECTED");
}
private JSONArray getAsArray(String table, String where, String value) {
try {
String string = r.table(table).filter(row -> row.g(where.toLowerCase()).eq(value)).coerceTo("array").toJson().run(conn);