Searched refs:column_text (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/contrib/kyua/utils/sqlite/
H A Dstatement.hpp106 std::string column_text(const int);
H A Dstatement_test.cpp291 ATF_TEST_CASE_WITHOUT_HEAD(column_text); variable
292 ATF_TEST_CASE_BODY(column_text)
299 ATF_REQUIRE_EQ("foo bar", stmt.column_text(1));
628 ATF_REQUIRE_EQ(str, stmt.column_text(1));
648 ATF_REQUIRE_EQ(std::string("Hello"), stmt.column_text(1));
665 ATF_REQUIRE_EQ(str, stmt.column_text(1));
748 ATF_ADD_TEST_CASE(tcs, column_text);
H A Dstatement.cpp337 sqlite::statement::column_text(const int index) function in class:sqlite::statement
438 /// Type-checked version of column_text.
442 /// \return The same as column_text if the value can be retrieved.
453 return column_text(column);
/freebsd-current/contrib/kyua/store/
H A Ddbtypes.cpp151 const std::string value = stmt.column_text(id);
194 return stmt.column_text(id);
218 const std::string type = stmt.column_text(id);
H A Dwrite_transaction_test.cpp92 ATF_REQUIRE_EQ(result_type, stmt.column_text(1));
94 ATF_REQUIRE_EQ(exp_reason, stmt.column_text(2));
/freebsd-current/contrib/kyua/cli/
H A Dcmd_db_exec.cpp110 return stmt.column_text(index);
/freebsd-current/contrib/sqlite3/
H A Dsqlite3ext.h71 const unsigned char * (*column_text)(sqlite3_stmt*,int iCol); member in struct:sqlite3_api_routines
431 #define sqlite3_column_text sqlite3_api->column_text
H A Dsqlite3.c[all...]

Completed in 617 milliseconds