public int ColumnCount(Sqlite3Statement stmt) { return(X86Interop.ColumnCount(stmt)); }
public Result BusyTimeout(Sqlite3DatabaseHandle db, int milliseconds) { return(X86Interop.BusyTimeout(db, milliseconds)); }
public int BindNull(Sqlite3Statement stmt, int index) { return(X86Interop.BindNull(stmt, index)); }
public int BindDouble(Sqlite3Statement stmt, int index, double val) { return(X86Interop.BindDouble(stmt, index, val)); }
public Result Finalize(Sqlite3Statement stmt) { return(X86Interop.Finalize(stmt)); }
public string GetErrmsg(Sqlite3DatabaseHandle db) { return(X86Interop.GetErrmsg(db)); }
public string ColumnString(Sqlite3Statement stmt, int index) { return(X86Interop.ColumnString(stmt, index)); }
public Result Step(Sqlite3Statement stmt) { return(X86Interop.Step(stmt)); }
public double ColumnDouble(Sqlite3Statement stmt, int index) { return(X86Interop.ColumnDouble(stmt, index)); }
public int ColumnBytes(Sqlite3Statement stmt, int index) { return(X86Interop.ColumnBytes(stmt, index)); }
public long ColumnInt64(Sqlite3Statement stmt, int index) { return(X86Interop.ColumnInt64(stmt, index)); }
public Result Open(string filename, out Sqlite3DatabaseHandle db) { return(X86Interop.Open(filename, out db)); }
public ColType ColumnType(Sqlite3Statement stmt, int index) { return(X86Interop.ColumnType(stmt, index)); }
public int Changes(Sqlite3DatabaseHandle db) { return(X86Interop.Changes(db)); }
public byte[] ColumnByteArray(Sqlite3Statement stmt, int index) { return(X86Interop.ColumnByteArray(stmt, index)); }
public Sqlite3Statement Prepare2(Sqlite3DatabaseHandle db, string query) { return(X86Interop.Prepare2(db, query)); }
public Result EnableLoadExtension(Sqlite3DatabaseHandle db, int onoff) { return(X86Interop.EnableLoadExtension(db, onoff)); }
public Result Reset(Sqlite3Statement stmt) { return(X86Interop.Reset(stmt)); }
public Result Open(string filename, out Sqlite3DatabaseHandle db, int flags, IntPtr zVfs) { return(X86Interop.Open(filename, out db, flags, zVfs)); }
public long LastInsertRowid(Sqlite3DatabaseHandle db) { return(X86Interop.LastInsertRowid(db)); }
public ExtendedResult ExtendedErrCode(Sqlite3DatabaseHandle db) { return(X86Interop.ExtendedErrCode(db)); }
public int BindParameterIndex(Sqlite3Statement stmt, string name) { return(X86Interop.BindParameterIndex(stmt, name)); }
public Result Open(byte[] filename, out Sqlite3Statement db, int flags, Sqlite3Statement zvfs) { return(X86Interop.Open(filename, out db, flags, zvfs)); }
public int BindInt64(Sqlite3Statement stmt, int index, long val) { return(X86Interop.BindInt64(stmt, index, val)); }
public Result Close(Sqlite3DatabaseHandle db) { return(X86Interop.Close(db)); }
public int BindText(Sqlite3Statement stmt, int index, string val, int n, IntPtr free) { return(X86Interop.BindText(stmt, index, val, n, free)); }
public int BindBlob(Sqlite3Statement stmt, int index, byte[] val, int n, IntPtr free) { return(X86Interop.BindBlob(stmt, index, val, n, free)); }