new SQLiteDB("cars") sqlitedb.dropTable("cars") sqlitedb.createTable({ name: "cars", columns: { car_id: "integer", name: "text", description: "text", img: "blob", price: "real" } }, { onSuccess: function() { alert("Created table"); }, onFailure: function() { alert("Failed creating table"); } }); INSERT + COUNT Start tests without actions