static int commit(IntPtr puser) { SQLite3 instance = GCHandle.FromIntPtr(puser).Target as SQLite3; return(instance.commit_callback(puser)); }
static void rollback(IntPtr puser) { SQLite3 instance = GCHandle.FromIntPtr(puser).Target as SQLite3; instance.rollback_callback(puser); }
static void update(IntPtr puser, int type, IntPtr database, IntPtr table, Int64 rowid) { SQLite3 instance = GCHandle.FromIntPtr(puser).Target as SQLite3; instance.update_callback(puser, type, database, table, rowid); }