OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:column_type
(Results
1 - 11
of
11
) sorted by relevancy
/src/external/bsd/kyua-cli/dist/utils/sqlite/
statement.cpp
235
sqlite::statement::
column_type
(const int index)
function in class:sqlite::statement
279
PRE(
column_type
(index) == type_blob);
293
PRE(
column_type
(index) == type_float);
308
PRE(
column_type
(index) == type_integer);
321
PRE(
column_type
(index) == type_integer);
337
PRE(
column_type
(index) == type_text);
355
PRE(
column_type
(index) == type_blob ||
column_type
(index) == type_text);
372
if (
column_type
(column) != sqlite::type_blob)
390
if (
column_type
(column) != sqlite::type_float
[
all
...]
statement_test.cpp
160
ATF_REQUIRE(sqlite::type_blob == stmt.
column_type
(0));
161
ATF_REQUIRE(sqlite::type_float == stmt.
column_type
(1));
162
ATF_REQUIRE(sqlite::type_integer == stmt.
column_type
(2));
163
ATF_REQUIRE(sqlite::type_null == stmt.
column_type
(3));
164
ATF_REQUIRE(sqlite::type_text == stmt.
column_type
(4));
167
ATF_REQUIRE(sqlite::type_null == stmt.
column_type
(i));
180
ATF_REQUIRE(sqlite::type_integer == stmt.
column_type
(0));
181
ATF_REQUIRE(sqlite::type_null == stmt.
column_type
(1));
182
ATF_REQUIRE(sqlite::type_null == stmt.
column_type
(512));
543
ATF_REQUIRE(sqlite::type_integer == stmt.
column_type
(0))
[
all
...]
statement.hpp
109
type
column_type
(const int);
/src/external/bsd/kyua-cli/dist/store/
dbtypes.cpp
111
if (stmt.
column_type
(id) != sqlite::type_text)
136
if (stmt.
column_type
(id) != sqlite::type_integer)
155
switch (stmt.
column_type
(id)) {
178
if (stmt.
column_type
(id) != sqlite::type_integer)
metadata.cpp
63
if (stmt.
column_type
(index) != sqlite::type_integer)
transaction.cpp
215
if (stmt.
column_type
(stmt.column_id(reason_column)) !=
279
if (stmt.
column_type
(0) == sqlite::type_null) {
282
INV(stmt.
column_type
(0) == sqlite::type_integer);
transaction_test.cpp
97
ATF_REQUIRE(stmt.
column_type
(2) == sqlite::type_null);
/src/external/bsd/kyua-cli/dist/cli/
cmd_db_exec_test.cpp
48
/// \param
column_type
The SQL type of the test column.
53
do_format_cell_test(const std::string
column_type
,
59
F("CREATE TABLE test (column %s)") %
column_type
);
cmd_db_exec.cpp
86
switch (stmt.
column_type
(index)) {
/src/external/public-domain/sqlite/dist/
sqlite3ext.h
73
int (*
column_type
)(sqlite3_stmt*,int iCol);
member in struct:sqlite3_api_routines
443
#define sqlite3_column_type sqlite3_api->
column_type
sqlite3.c
[
all
...]
Completed in 75 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026