コード例 #1
0
        int SQLiteProvider.Sqlite3CloseV2(IntPtr db)
        {
#if NETFX_CORE
            return(NativeMethods.sqlite3_close_v2(db));
#elif WINDOWS_PHONE
            return(SQLite3RuntimeProvider.sqlite3_close_v2(db.ToInt64()));
#endif
        }
コード例 #2
0
 int ISQLite3Provider.Sqlite3CloseV2(IntPtr db)
 {
     return(SQLite3RuntimeProvider.sqlite3_close_v2(db.ToInt64()));
 }