Example #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);
        }
Example #2
0
File: DB.cs Project: 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;
 }
Example #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);
 }