| Package | Description |
|---|---|
| org.cruxframework.crux.core.client.db |
Contains classes to support a database on client browser.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IDXFileStore.add(Blob file,
String fileName,
DatabaseWriteCallback<String> callback) |
void |
FileStore.add(Blob file,
String fileName,
DatabaseWriteCallback<String> callback)
Insert a new file into the database.
|
void |
WSQLAbstractObjectStore.add(V object,
DatabaseWriteCallback<K> callback) |
void |
ObjectStore.add(V object,
DatabaseWriteCallback<K> callback)
Insert the given object into the store.
|
protected void |
WSQLAbstractObjectStore.insertObject(SQLTransaction tx,
DatabaseWriteCallback<K> callback,
K key,
com.google.gwt.json.client.JSONObject encoded) |
protected void |
WSQLAbstractObjectStore.insertObject(V object,
SQLTransaction tx,
DatabaseWriteCallback<K> callback,
K key) |
void |
IDXFileStore.put(Blob file,
String fileName,
DatabaseWriteCallback<String> callback) |
void |
FileStore.put(Blob file,
String fileName,
DatabaseWriteCallback<String> callback)
If database already contains a file stored with the given fileName, update the file stored.
|
void |
WSQLAbstractObjectStore.put(V object,
DatabaseWriteCallback<K> callback) |
void |
ObjectStore.put(V object,
DatabaseWriteCallback<K> callback)
Update the given object into the storage.
|
protected void |
WSQLAbstractObjectStore.runInsertQL(DatabaseWriteCallback<K> callback,
SQLTransaction tx,
com.google.gwt.core.client.JsArrayMixed args,
String sqlStatement,
K key) |
protected void |
WSQLAbstractObjectStore.runUpdateSQL(DatabaseWriteCallback<K> callback,
SQLTransaction tx,
com.google.gwt.core.client.JsArrayMixed args,
String sqlStatement,
K key,
com.google.gwt.json.client.JSONObject encodedObject) |
protected void |
WSQLAbstractObjectStore.updateObject(V object,
SQLTransaction tx,
DatabaseWriteCallback<K> callback,
K key) |
Copyright © 2015. All rights reserved.