mdb_drop() private méthode

private mdb_drop ( IntPtr txn, uint dbi, bool del ) : int
txn System.IntPtr
dbi uint
del bool
Résultat int
Exemple #1
0
 public static int mdb_drop(IntPtr txn, uint dbi, bool del)
 {
     return(check(LmdbMethods.mdb_drop(txn, dbi, del)));
 }
Exemple #2
0
 public static MDBResultCode mdb_drop(IntPtr txn, uint dbi, bool del)
 {
     return(LmdbMethods.mdb_drop(txn, dbi, del));
 }