Searched refs:zQuoted (Results 1 – 2 of 2) sorted by relevance
22535 char *zQuoted = sqlite3_mprintf("\"%w\"", z); in output_csv() local22536 shell_check_oom(zQuoted); in output_csv()22537 sqlite3_fputs(zQuoted, p->out); in output_csv()22538 sqlite3_free(zQuoted); in output_csv()
222930 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 …]