private static extern int mdb_cursor_del(IntPtr cursor, CursorDeleteOption flags);
 int INativeLibraryFacade.mdb_cursor_del(IntPtr cursor, CursorDeleteOption flags)
 {
     return FallbackLibraryFacade.mdb_cursor_del(cursor, flags);
 }
 /// <summary>
 /// Delete current key/data pair.
 /// This function deletes the key/data pair to which the cursor refers.
 /// </summary>
 /// <param name="option">Options for this operation. This parameter must be set to 0 or one of the values described here.
 ///     MDB_NODUPDATA - delete all of the data items for the current key. This flag may only be specified if the database was opened with MDB_DUPSORT.</param>
 private void Delete(CursorDeleteOption option)
 {
     mdb_cursor_del(_handle, option);
 }
 //TODO: tests
 public void Delete(CursorDeleteOption option)
 {
     Native.Execute(lib => lib.mdb_cursor_del(_handle, option));
 }
 /// <summary>
 /// Delete current key/data pair.
 /// This function deletes the key/data pair to which the cursor refers.
 /// </summary>
 /// <param name="option">Options for this operation. This parameter must be set to 0 or one of the values described here.
 ///     MDB_NODUPDATA - delete all of the data items for the current key. This flag may only be specified if the database was opened with MDB_DUPSORT.</param>
 private MDBResultCode Delete(CursorDeleteOption option)
 {
     return(mdb_cursor_del(_handle, option));
 }
Example #6
0
 public static extern int mdb_cursor_del(IntPtr cursor, CursorDeleteOption flags);
Example #7
0
 public static int mdb_cursor_del(IntPtr cursor, CursorDeleteOption flags)
 {
     return check(LmdbMethods.mdb_cursor_del(cursor, flags));
 }
 //TODO: tests
 public void Delete(CursorDeleteOption option)
 {
     NativeMethods.Execute(lib => lib.mdb_cursor_del(_handle, option));
 }
Example #9
0
 public static int mdb_cursor_del(IntPtr cursor, CursorDeleteOption flags)
 {
     return(check(LmdbMethods.mdb_cursor_del(cursor, flags)));
 }
Example #10
0
 public static extern MDBResultCode mdb_cursor_del(IntPtr cursor, CursorDeleteOption flags);
 //TODO: tests
 public void Delete(CursorDeleteOption option)
 {
     Native.Execute(() => Native.mdb_cursor_del(_handle, option));
 }
Example #12
0
 public static extern int mdb_cursor_del(IntPtr cursor, CursorDeleteOption flags); //OK
 int INativeLibraryFacade.mdb_cursor_del(IntPtr cursor, CursorDeleteOption flags)
 {
     return(FallbackLibraryFacade.mdb_cursor_del(cursor, flags));
 }