Example #1
0
 public static DbResult db_write_begin(StoreHandle store, out WriterHandle writer, bool check = true)
 {
     return(MaybeCheck(_db_write_begin(store, out writer), check));
 }
Example #2
0
 public static DbResult db_read_begin(StoreHandle store, out ReaderHandle reader, bool check = true)
 {
     return(MaybeCheck(_db_read_begin(store, out reader), check));
 }
Example #3
0
 private static extern DbResult _db_write_begin(StoreHandle store, out WriterHandle writer);
Example #4
0
 private static extern DbResult _db_read_begin(StoreHandle store, out ReaderHandle reader);
Example #5
0
 public static DbResult db_store_open(IntPtr path, UIntPtr pathLen, out StoreHandle store, bool check = true)
 {
     return(MaybeCheck(_db_store_open(path, pathLen, out store), check));
 }
Example #6
0
 private static extern DbResult _db_store_open(IntPtr path, UIntPtr pathLen, out StoreHandle store);
Example #7
0
 public static DbResult db_delete_begin(StoreHandle store, out DeleterHandle deleter, bool check = true)
 {
     return(MaybeCheck(_db_delete_begin(store, out deleter), check));
 }
Example #8
0
 private static extern DbResult _db_delete_begin(StoreHandle store, out DeleterHandle deleter);