示例#1
0
 public int ColumnCount(Sqlite3Statement stmt)
 {
     return(X64Interop.ColumnCount(stmt));
 }
示例#2
0
 public Result BusyTimeout(Sqlite3DatabaseHandle db, int milliseconds)
 {
     return(X64Interop.BusyTimeout(db, milliseconds));
 }
示例#3
0
 public int BindNull(Sqlite3Statement stmt, int index)
 {
     return(X64Interop.BindNull(stmt, index));
 }
示例#4
0
 public int BindDouble(Sqlite3Statement stmt, int index, double val)
 {
     return(X64Interop.BindDouble(stmt, index, val));
 }
示例#5
0
 public Result Finalize(Sqlite3Statement stmt)
 {
     return(X64Interop.Finalize(stmt));
 }
示例#6
0
 public string GetErrmsg(Sqlite3DatabaseHandle db)
 {
     return(X64Interop.GetErrmsg(db));
 }
示例#7
0
 public string ColumnString(Sqlite3Statement stmt, int index)
 {
     return(X64Interop.ColumnString(stmt, index));
 }
示例#8
0
 public Result Step(Sqlite3Statement stmt)
 {
     return(X64Interop.Step(stmt));
 }
示例#9
0
 public double ColumnDouble(Sqlite3Statement stmt, int index)
 {
     return(X64Interop.ColumnDouble(stmt, index));
 }
示例#10
0
 public int ColumnBytes(Sqlite3Statement stmt, int index)
 {
     return(X64Interop.ColumnBytes(stmt, index));
 }
示例#11
0
 public long ColumnInt64(Sqlite3Statement stmt, int index)
 {
     return(X64Interop.ColumnInt64(stmt, index));
 }
示例#12
0
 public Result Open(string filename, out Sqlite3DatabaseHandle db)
 {
     return(X64Interop.Open(filename, out db));
 }
示例#13
0
 public ColType ColumnType(Sqlite3Statement stmt, int index)
 {
     return(X64Interop.ColumnType(stmt, index));
 }
示例#14
0
 public int Changes(Sqlite3DatabaseHandle db)
 {
     return(X64Interop.Changes(db));
 }
示例#15
0
 public byte[] ColumnByteArray(Sqlite3Statement stmt, int index)
 {
     return(X64Interop.ColumnByteArray(stmt, index));
 }
示例#16
0
 public Sqlite3Statement Prepare2(Sqlite3DatabaseHandle db, string query)
 {
     return(X64Interop.Prepare2(db, query));
 }
示例#17
0
 public Result EnableLoadExtension(Sqlite3DatabaseHandle db, int onoff)
 {
     return(X64Interop.EnableLoadExtension(db, onoff));
 }
示例#18
0
 public Result Reset(Sqlite3Statement stmt)
 {
     return(X64Interop.Reset(stmt));
 }
示例#19
0
 public Result Open(string filename, out Sqlite3DatabaseHandle db, int flags, IntPtr zVfs)
 {
     return(X64Interop.Open(filename, out db, flags, zVfs));
 }
示例#20
0
 public long LastInsertRowid(Sqlite3DatabaseHandle db)
 {
     return(X64Interop.LastInsertRowid(db));
 }
示例#21
0
 public ExtendedResult ExtendedErrCode(Sqlite3DatabaseHandle db)
 {
     return(X64Interop.ExtendedErrCode(db));
 }
示例#22
0
 public int BindParameterIndex(Sqlite3Statement stmt, string name)
 {
     return(X64Interop.BindParameterIndex(stmt, name));
 }
示例#23
0
 public Result Open(byte[] filename, out Sqlite3Statement db, int flags, Sqlite3Statement zvfs)
 {
     return(X64Interop.Open(filename, out db, flags, zvfs));
 }
示例#24
0
 public int BindInt64(Sqlite3Statement stmt, int index, long val)
 {
     return(X64Interop.BindInt64(stmt, index, val));
 }
示例#25
0
 public Result Close(Sqlite3DatabaseHandle db)
 {
     return(X64Interop.Close(db));
 }
示例#26
0
 public int BindText(Sqlite3Statement stmt, int index, string val, int n, IntPtr free)
 {
     return(X64Interop.BindText(stmt, index, val, n, free));
 }
示例#27
0
 public int BindBlob(Sqlite3Statement stmt, int index, byte[] val, int n, IntPtr free)
 {
     return(X64Interop.BindBlob(stmt, index, val, n, free));
 }