Home | History | Annotate | Download | only in cli

Lines Matching refs:insert

47 /// \tparam Cell The type of the value to insert into the test column.
49 /// \param value The value to insert into the test column.
62 sqlite::statement insert = db.create_statement(
63 "INSERT INTO test (column) VALUES (:column)");
64 insert.bind(":column", value);
65 insert.step_without_results();
140 sqlite::statement insert = db.create_statement(
141 "INSERT INTO test VALUES (:v1, :v2)");
142 insert.bind(":v1", "A string");
143 insert.bind(":v2", sqlite::blob(memory, std::strlen(memory)));
144 insert.step_without_results();