• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/platform/sql/

Lines Matching refs:SQLiteStatement

27 #include "SQLiteStatement.h"
47 SQLiteStatement::SQLiteStatement(SQLiteDatabase& db, const String& sql)
57 SQLiteStatement::~SQLiteStatement()
62 int SQLiteStatement::prepare()
95 int SQLiteStatement::step()
119 int SQLiteStatement::finalize()
132 int SQLiteStatement::reset()
141 bool SQLiteStatement::executeCommand()
154 bool SQLiteStatement::returnsAtLeastOneResult()
168 int SQLiteStatement::bindBlob(int index, const void* blob, int size)
182 int SQLiteStatement::bindBlob(int index, const String& text)
196 int SQLiteStatement::bindText(int index, const String& text)
214 int SQLiteStatement::bindInt(int index, int integer)
223 int SQLiteStatement::bindInt64(int index, int64_t integer)
232 int SQLiteStatement::bindDouble(int index, double number)
241 int SQLiteStatement::bindNull(int index)
250 int SQLiteStatement::bindValue(int index, const SQLValue& value)
265 unsigned SQLiteStatement::bindParameterCount() const
273 int SQLiteStatement::columnCount()
281 bool SQLiteStatement::isColumnNull(int col)
293 bool SQLiteStatement::isColumnDeclaredAsBlob(int col)
304 String SQLiteStatement::getColumnName(int col)
315 SQLValue SQLiteStatement::getColumnValue(int col)
345 String SQLiteStatement::getColumnText(int col)
356 double SQLiteStatement::getColumnDouble(int col)
367 int SQLiteStatement::getColumnInt(int col)
378 int64_t SQLiteStatement::getColumnInt64(int col)
389 String SQLiteStatement::getColumnBlobAsString(int col)
411 void SQLiteStatement::getColumnBlobAsVector(int col, Vector<char>& result)
437 const void* SQLiteStatement::getColumnBlob(int col, int& size)
465 bool SQLiteStatement::returnTextResults(int col, Vector<String>& v)
487 bool SQLiteStatement::returnIntResults(int col, Vector<int>& v)
507 bool SQLiteStatement::returnInt64Results(int col, Vector<int64_t>& v)
527 bool SQLiteStatement::returnDoubleResults(int col, Vector<double>& v)
547 bool SQLiteStatement::isExpired()