- countdeprecated size_t count() 
- returns the total number of records we are 'talking on' (filters? query?) 
- countsize_t count(Database db) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- countRowsToDeletesize_t countRowsToDelete() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- countRowsToInsertsize_t countRowsToInsert() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- countRowsToUpdatesize_t countRowsToUpdate() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- deleteRecordimmutable(ubyte)[] deleteRecord(Database db, immutable(ubyte)[] data, DeleteError err, string username, string clientid) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- deleteRecordasPkParamStruct!table deleteRecord(Database db, asPkParamStruct!table keys, DeleteError err, string username, string clientid) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- indexsize_t index() 
- return the unique index identifier for this table, that's coming from the table definition in the app.d 
- insertRecordColumnsStruct insertRecord(Database db, ColumnsStruct record, InsertError err, string username, string clientid) 
- insert a new row in the server table, turning clients table out of sync 
- insertRecordimmutable(ubyte)[][2] insertRecord(Database db, immutable(ubyte)[] data, InsertError err, string username, string clientId) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- insertRowdeprecated void insertRow(ColumnsStruct fixture) 
- insert a new row in the server table, turning clients table out of sync 
- loadFixturevoid loadFixture(ColumnsStruct fixture) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- packRowsimmutable(ubyte)[] packRows(size_t offset, size_t limit) 
- returns the packet selected rows 
- packRowsimmutable(ubyte)[] packRows(Database db, size_t offset, size_t limit) 
- returns the packet selected rows 
- packRowsToDeleteimmutable(ubyte)[] packRowsToDelete() 
- return the packet rows to delete in the client 
- packRowsToInsertimmutable(ubyte)[] packRowsToInsert() 
- return the packet rows to insert in the client 
- packRowsToUpdateimmutable(ubyte)[] packRowsToUpdate() 
- return the packet rows to update in the client 
- selectRowsdeprecated auto  selectRows(size_t offset, size_t limit) 
- returns 'limit' rows starting from 'offset'. 
- selectRowsauto  selectRows(Database db, size_t offset, size_t limit) 
- returns 'limit' rows starting from 'offset'. 
- unsafeResetvoid unsafeReset() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- updateRecordvoid updateRecord(Database db, immutable(ubyte)[] encodedKeys, immutable(ubyte)[] encodedRecord, RequestState state) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- updateRecordvoid updateRecord(Database db, asPkStruct!table keys, ColumnsStruct record, RequestState state) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- updateRowdeprecated void updateRow(KeysStruct keys, ColumnsStruct record) 
- update row in the server table, turning the client tables out of sync 
- updateRowvoid updateRow(Database db, KeysStruct keys, ColumnsStruct record) 
- update row in the server table, turning the client tables out of sync