This class implements SQLiteBase completely, and is the guts of the code that interop's SQLite with .NET
상속: Mono.Data.Sqlite.SQLiteBase
예제 #1
0
파일: SQLite3.cs 프로젝트: zzwwqqq/mono
        static int commit(IntPtr puser)
        {
            SQLite3 instance = GCHandle.FromIntPtr(puser).Target as SQLite3;

            return(instance.commit_callback(puser));
        }
예제 #2
0
파일: SQLite3.cs 프로젝트: zzwwqqq/mono
        static void rollback(IntPtr puser)
        {
            SQLite3 instance = GCHandle.FromIntPtr(puser).Target as SQLite3;

            instance.rollback_callback(puser);
        }
예제 #3
0
파일: SQLite3.cs 프로젝트: zzwwqqq/mono
        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);
        }