Home | History | Annotate | Download | only in SQLite

Lines Matching full:sqlite3

4  * Class to represent compiled SQLite3 statement.
15 * Internal handle for the SQLite3 statement.
35 * Perform one step of compiled SQLite3 statement.
72 * Close the compiled SQLite3 statement.
78 * Reset the compiled SQLite3 statement without
85 * Clear all bound parameters of the compiled SQLite3 statement.
91 * Bind positional integer value to compiled SQLite3 statement.
99 * Bind positional long value to compiled SQLite3 statement.
107 * Bind positional double value to compiled SQLite3 statement.
115 * Bind positional byte array to compiled SQLite3 statement.
123 * Bind positional String to compiled SQLite3 statement.
131 * Bind positional SQL null to compiled SQLite3 statement.
138 * Bind positional zero'ed blob to compiled SQLite3 statement.
147 * Return number of parameters in compiled SQLite3 statement.
154 * Return name of parameter in compiled SQLite3 statement.
162 * Return index of named parameter in compiled SQLite3 statement.
172 * Retrieve integer column from exec'ed SQLite3 statement.
180 * Retrieve long column from exec'ed SQLite3 statement.
187 * Retrieve double column from exec'ed SQLite3 statement.
194 * Retrieve blob column from exec'ed SQLite3 statement.
201 * Retrieve string column from exec'ed SQLite3 statement.
208 * Retrieve column type from exec'ed SQLite3 statement.
215 * Retrieve number of columns of exec'ed SQLite3 statement.
222 * Retrieve column data as object from exec'ed SQLite3 statement.
242 * Return table name of column of SQLite3 statement.
250 * Return database name of column of SQLite3 statement.
258 * Return declared column type of SQLite3 statement.
266 * Return origin column name of column of SQLite3 statement.