Exemplo n.º 1
0
        internal override long GetInt64(SqliteStatement stmt, int index)
        {
            long value;

#if !PLATFORM_COMPACTFRAMEWORK
            value = UnsafeNativeMethods.sqlite3_column_int64(stmt._sqlite_stmt, index);
#else
            UnsafeNativeMethods.sqlite3_column_int64_interop(stmt._sqlite_stmt, index, out value);
#endif
            return(value);
        }