示例#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));
 }
示例#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));
 }
示例#3
0
 private static extern DbResult _db_write_begin(StoreHandle store, out WriterHandle writer);
示例#4
0
 private static extern DbResult _db_read_begin(StoreHandle store, out ReaderHandle reader);
示例#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));
 }
示例#6
0
 private static extern DbResult _db_store_open(IntPtr path, UIntPtr pathLen, out StoreHandle store);
示例#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));
 }
示例#8
0
 private static extern DbResult _db_delete_begin(StoreHandle store, out DeleterHandle deleter);