int |
PgRDB.count(PgRDB.Table table) |
int |
PgRDB.Cluster.count(PgRDB.Table table) |
String |
PgRDB.createIndex(PgRDB.Table table,
boolean unique,
PgRDB.Column... columns) |
String |
PgRDB.Cluster.createIndex(PgRDB.Table table,
boolean unique,
PgRDB.Column... columns) |
String |
PgRDB.createIndex(PgRDB.Table table,
PgRDB.Column ct,
boolean unique) |
String |
PgRDB.Cluster.createIndex(PgRDB.Table table,
PgRDB.Column ct,
boolean unique) |
void |
PgRDB.createTable(PgRDB.Table table,
Collection<PgRDB.Column> columns) |
void |
PgRDB.Cluster.createTable(PgRDB.Table table,
Collection<PgRDB.Column> columns) |
void |
PgRDB.createTable(PgRDB.Table table,
PgRDB.Column... columns) |
void |
PgRDB.Cluster.createTable(PgRDB.Table table,
PgRDB.Column... columns) |
void |
PgRDB.deleteAndInsert(PgRDB.Table table,
PgRDB.Where where,
Collection<PgRDB.Value> cvs) |
void |
PgRDB.Cluster.deleteAndInsert(PgRDB.Table table,
PgRDB.Where where,
Collection<PgRDB.Value> cvs) |
void |
PgRDB.deleteAndInsert(PgRDB.Table table,
PgRDB.Where where,
PgRDB.Value... cvs) |
void |
PgRDB.Cluster.deleteAndInsert(PgRDB.Table table,
PgRDB.Where where,
PgRDB.Value... cvs) |
void |
PgRDB.deleteAndMultipleInsert(PgRDB.Table table,
PgRDB.Where where,
Collection<? extends Collection<PgRDB.Value>> cvss) |
void |
PgRDB.Cluster.deleteAndMultipleInsert(PgRDB.Table table,
PgRDB.Where where,
Collection<? extends Collection<PgRDB.Value>> cvs) |
void |
PgRDB.deleteFrom(PgRDB.Table table) |
void |
PgRDB.Cluster.deleteFrom(PgRDB.Table table) |
void |
PgRDB.deleteFrom(PgRDB.Table table,
PgRDB.Where where) |
void |
PgRDB.Cluster.deleteFrom(PgRDB.Table table,
PgRDB.Where where) |
void |
PgRDB.dropTable(PgRDB.Table table) |
void |
PgRDB.Cluster.dropTable(PgRDB.Table table) |
boolean |
PgRDB.exists(PgRDB.Table table) |
boolean |
PgRDB.Cluster.exists(PgRDB.Table table) |
void |
PgRDB.grantTableTo(PgRDB.Table table,
String privilege,
String to) |
void |
PgRDB.Cluster.grantTableTo(PgRDB.Table table,
String privilege,
String to) |
void |
PgRDB.insertInto(PgRDB.Table table,
Collection<PgRDB.Value> cvs) |
void |
PgRDB.Cluster.insertInto(PgRDB.Table table,
Collection<PgRDB.Value> cvs) |
void |
PgRDB.insertInto(PgRDB.Table table,
PgRDB.Value... cvs) |
void |
PgRDB.Cluster.insertInto(PgRDB.Table table,
PgRDB.Value... cvs) |
String |
PgRDB.max(PgRDB.Column c,
PgRDB.Table table) |
String |
PgRDB.Cluster.max(PgRDB.Column column,
PgRDB.Table table) |
String |
PgRDB.min(PgRDB.Column c,
PgRDB.Table table) |
String |
PgRDB.Cluster.min(PgRDB.Column column,
PgRDB.Table table) |
void |
PgRDB.multipleDeleteAndInsert(PgRDB.Table table,
Collection<PgRDB.DeleteInsert> delins) |
void |
PgRDB.Cluster.multipleDeleteAndInsert(PgRDB.Table table,
Collection<PgRDB.DeleteInsert> delins) |
void |
PgRDB.multipleInsertInto(PgRDB.Table table,
Collection<Collection<PgRDB.Value>> cvss) |
void |
PgRDB.Cluster.multipleInsertInto(PgRDB.Table table,
Collection<Collection<PgRDB.Value>> cvs) |
PgRDB.Column |
PgRDB.Column.of(PgRDB.Table ta) |
boolean |
PgRDB.vacuum(PgRDB.Table table) |
void |
PgRDB.Cluster.vacuum(PgRDB.Table table) |