sqlite3_result_int64() private method

private sqlite3_result_int64 ( IntPtr context, Int64 value ) : void
context IntPtr
value Int64
return void
コード例 #1
0
ファイル: SQLite3.cs プロジェクト: wuhuolong/MaxBooks
        internal override void ReturnInt64(IntPtr context, long value)
        {
#if !PLATFORM_COMPACTFRAMEWORK
            UnsafeNativeMethods.sqlite3_result_int64(context, value);
#else
            UnsafeNativeMethods.sqlite3_result_int64_interop(context, ref value);
#endif
        }
コード例 #2
0
 internal override void ReturnInt64(SqliteContextHandle context, long value)
 {
     UnsafeNativeMethods.sqlite3_result_int64(context, value);
 }