Пример #1
0
 public Statement Bind(int index, object value)
 {
     Sqlite3.Bind(db, pStmt, index, value);
     return(this);
 }
Пример #2
0
 public Statement ClearBindings()
 {
     resetIfExecuted();
     Sqlite3.ClearBindings(db, pStmt);
     return(this);
 }