Example #1
0
        int SQLiteProvider.Sqlite3ColumnType(IntPtr stm, int columnIndex)
        {
#if NETFX_CORE
            return(NativeMethods.sqlite3_column_type(stm, columnIndex));
#elif WINDOWS_PHONE
            return(SQLite3RuntimeProvider.sqlite3_column_type(stm.ToInt64(), columnIndex));
#endif
        }
 int ISQLite3Provider.Sqlite3ColumnType(IntPtr stm, int columnIndex)
 {
     return(SQLite3RuntimeProvider.sqlite3_column_type(stm.ToInt64(), columnIndex));
 }