Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dshell.c22535 char *zQuoted = sqlite3_mprintf("\"%w\"", z); in output_csv() local
22536 shell_check_oom(zQuoted); in output_csv()
22537 sqlite3_fputs(zQuoted, p->out); in output_csv()
22538 sqlite3_free(zQuoted); in output_csv()
H A Dsqlite3.c222930 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol);
222931 if( zQuoted==0 ){
222933 }else if( zQuoted[0]=='N' ){
222937 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
242907 char *zQuoted;
242913 zQuoted = sqlite3_malloc64(nByte);
242915 if( zQuoted ){
242920 zQuoted[i++] = '"';
242922 if( *zIn=='"' ) zQuoted[i++] = '"';
242923 zQuoted[i++] = *zIn++;
[all …]