use of com.bluenimble.platform.db.Database in project serverless by bluenimble.
the class UpdateOnlyOne2One method main.
public static void main(String[] args) throws DatabaseException {
Database db = new DatabaseServer().get();
DatabaseObject driver = db.get("Drivers", "722388b0-9a9a-459e-a583-d802653a60b0");
DatabaseObject car = (DatabaseObject) driver.get("car");
car.set("model", "BMW");
car.save();
System.out.println();
System.out.println("+===============================================================================+");
System.out.println();
System.out.println(car.toJson(new DefaultDatabaseObjectSerializer(2, 2)));
}
use of com.bluenimble.platform.db.Database in project serverless by bluenimble.
the class Describe method main.
public static void main(String[] args) throws DatabaseException {
Database db = new DatabaseServer().get();
System.out.println(db.describe());
}
use of com.bluenimble.platform.db.Database in project serverless by bluenimble.
the class Find method main.
public static void main(String[] args) throws Exception {
String query = "{ where: { age: 34 } }";
Database db = new DatabaseServer().get();
List<DatabaseObject> employees = db.find("Employees", new JsonQuery(new JsonObject(query)), null);
for (DatabaseObject employee : employees) {
System.out.println(employee.toJson(new DefaultDatabaseObjectSerializer(2, 2)));
}
}
use of com.bluenimble.platform.db.Database in project serverless by bluenimble.
the class FindAll method main.
public static void main(String[] args) throws Exception {
String query = "{ }";
Database db = new DatabaseServer().get();
List<DatabaseObject> employees = db.find("Employees", new JsonQuery(new JsonObject(query)), null);
for (DatabaseObject employee : employees) {
System.out.println(employee.toJson(new DefaultDatabaseObjectSerializer(2, 2)));
}
}
use of com.bluenimble.platform.db.Database in project serverless by bluenimble.
the class FindLike method main.
public static void main(String[] args) throws Exception {
String query = "{ where: { name: { op: like, value: m } } }";
Database db = new DatabaseServer().get();
List<DatabaseObject> employees = db.find("Employees", new JsonQuery(new JsonObject(query)), null);
for (DatabaseObject employee : employees) {
System.out.println(employee.toJson(new DefaultDatabaseObjectSerializer(2, 2)));
}
}
Aggregations