This class implements SQLiteBase completely, and is the guts of the code that interop's SQLite with .NET
Наследование: Mono.Data.Sqlite.SQLiteBase
Пример #1
0
        static int commit(IntPtr puser)
        {
            SQLite3 instance = GCHandle.FromIntPtr(puser).Target as SQLite3;

            return(instance.commit_callback(puser));
        }
Пример #2
0
        static void rollback(IntPtr puser)
        {
            SQLite3 instance = GCHandle.FromIntPtr(puser).Target as SQLite3;

            instance.rollback_callback(puser);
        }
Пример #3
0
        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);
        }