예제 #1
0
        double SQLiteProvider.Sqlite3ColumnDouble(IntPtr stm, int columnIndex)
        {
#if NETFX_CORE
            return(NativeMethods.sqlite3_column_double(stm, columnIndex));
#elif WINDOWS_PHONE
            return(SQLite3RuntimeProvider.sqlite3_column_double(stm.ToInt64(), columnIndex));
#endif
        }
 double ISQLite3Provider.Sqlite3ColumnDouble(IntPtr stm, int columnIndex)
 {
     return(SQLite3RuntimeProvider.sqlite3_column_double(stm.ToInt64(), columnIndex));
 }