Searched refs:zQuoted (Results 1 – 2 of 2) sorted by relevance
20155 char *zQuoted = sqlite3_mprintf("\"%w\"", z); in output_csv() local20156 shell_check_oom(zQuoted); in output_csv()20157 oputz(zQuoted); in output_csv()20158 sqlite3_free(zQuoted); in output_csv()
219753 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 …]