예제 #1
0
파일: SQLite3.cs 프로젝트: bdcliang/BD
        internal override void Bind_Int64(SQLiteStatement stmt, int index, long value)
        {
            int errorCode = UnsafeNativeMethods.sqlite3_bind_int64((IntPtr)stmt._sqlite_stmt, index, value);

            if (errorCode > 0)
            {
                throw new SQLiteException(errorCode, this.SQLiteLastError());
            }
        }
예제 #2
0
        internal override void Bind_Int64(SQLiteStatement stmt, int index, long value)
        {
#if !PLATFORM_COMPACTFRAMEWORK
            int n = UnsafeNativeMethods.sqlite3_bind_int64(stmt._sqlite_stmt, index, value);
#else
            int n = UnsafeNativeMethods.sqlite3_bind_int64_interop(stmt._sqlite_stmt, index, ref value);
#endif
            if (n > 0)
            {
                throw new SQLiteException(n, SQLiteLastError());
            }
        }