Home | History | Annotate | Download | only in sql

Lines Matching refs:CheckError

45   return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
51 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_ROW;
56 // We don't call CheckError() here because sqlite3_reset() returns
73 int err = CheckError(sqlite3_bind_null(ref_->stmt(), col + 1));
85 int err = CheckError(sqlite3_bind_int(ref_->stmt(), col + 1, val));
93 int err = CheckError(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
101 int err = CheckError(sqlite3_bind_double(ref_->stmt(), col + 1, val));
109 int err = CheckError(sqlite3_bind_text(ref_->stmt(), col + 1, val, -1,
118 int err = CheckError(sqlite3_bind_text(ref_->stmt(), col + 1, val.data(),
131 int err = CheckError(sqlite3_bind_blob(ref_->stmt(), col + 1,
266 int Statement::CheckError(int err) {