Esempio n. 1
0
        internal int set_usercopy(DBTCopyDelegate dbt_usercopy)
        {
            int ret;

            ret = libdb_csharpPINVOKE.DB_set_usercopy(swigCPtr, dbt_usercopy);
            DatabaseException.ThrowException(ret);
            return(ret);
        }
Esempio n. 2
0
File: DB.cs Progetto: mcandre/db
 internal int set_usercopy(DBTCopyDelegate dbt_usercopy)
 {
     int ret;
     ret = libdb_csharpPINVOKE.DB_set_usercopy(swigCPtr, dbt_usercopy);
     DatabaseException.ThrowException(ret);
     return ret;
 }
Esempio n. 3
0
 public static extern int DB_ENV_set_usercopy(HandleRef jarg1, DBTCopyDelegate jarg2);
 private void initialize()
 {
     dbenv.api2_internal = this;
     CopyDelegate = new DBTCopyDelegate(DatabaseEntry.dbt_usercopy);
     dbenv.set_usercopy(CopyDelegate);
 }