Lines Matching full:statement
50 #include "utils/sqlite/statement.hpp"
85 /// Formats a particular cell of a statement result.
87 /// \param stmt The statement whose cell to format.
92 cli::format_cell(sqlite::statement& stmt, const int index) in format_cell()
117 /// Formats the column names of a statement for output as CSV.
119 /// \param stmt The statement whose columns to format.
123 cli::format_headers(sqlite::statement& stmt) in format_headers()
134 /// Formats a row of a statement for output as CSV.
136 /// \param stmt The statement whose current row to format.
140 cli::format_row(sqlite::statement& stmt) in format_row()
154 "Executes an arbitrary SQL statement in a results file and prints " in cmd_db_exec()
168 /// \return 0 if everything is OK, 1 if the statement is invalid or if there is
181 sqlite::statement stmt = db.create_statement( in run()