Home
last modified time | relevance | path

Searched refs:sqlite3_str_append (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h647 #define sqlite3_str_append sqlite3_api->str_append macro
H A Dsqlite3.h8478 ** ^The [sqlite3_str_append(X,S,N)] method appends exactly N bytes from string S
8500 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
H A Dsqlite3.c8791 ** ^The [sqlite3_str_append(X,S,N)] method appends exactly N bytes from string S
8813 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
32164 SQLITE_API void sqlite3_str_append(sqlite3_str *p, const char *z, int N){ sqlite3_str_append() function
[all...]
H A Dshell.c21838 sqlite3_str_append(pStr, "x'", 2); in quoted_column()
21842 sqlite3_str_append(pStr, "'", 1); in quoted_column()