Home
last modified time | relevance | path

Searched refs:zQuoted (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c20155 char *zQuoted = sqlite3_mprintf("\"%w\"", z); in output_csv() local
20156 shell_check_oom(zQuoted); in output_csv()
20157 oputz(zQuoted); in output_csv()
20158 sqlite3_free(zQuoted); in output_csv()
H A Dsqlite3.c219753 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol);
219754 if( zQuoted==0 ){
219756 }else if( zQuoted[0]=='N' ){
219760 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
239177 char *zQuoted;
239183 zQuoted = sqlite3_malloc64(nByte);
239185 if( zQuoted ){
239190 zQuoted[i++] = '"';
239192 if( *zIn=='"' ) zQuoted[i++] = '"';
239193 zQuoted[i++] = *zIn++;
[all …]