Lines Matching full: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( in do_format_cell_test() local
63 "INSERT INTO test (column) VALUES (:column)"); in do_format_cell_test()
64 insert.bind(":column", value); in do_format_cell_test()
65 insert.step_without_results(); in do_format_cell_test()
140 sqlite::statement insert = db.create_statement( in ATF_TEST_CASE_BODY() local
141 "INSERT INTO test VALUES (:v1, :v2)"); in ATF_TEST_CASE_BODY()
142 insert.bind(":v1", "A string"); in ATF_TEST_CASE_BODY()
143 insert.bind(":v2", sqlite::blob(memory, std::strlen(memory))); in ATF_TEST_CASE_BODY()
144 insert.step_without_results(); in ATF_TEST_CASE_BODY()