Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c18892 char *zQuoted = sqlite3_mprintf("\"%w\"", z); in output_csv() local
18893 shell_check_oom(zQuoted); in output_csv()
18894 oputz(zQuoted); in output_csv()
18895 sqlite3_free(zQuoted); in output_csv()
H A Dsqlite3.c217910 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol);
217911 if( zQuoted==0 ){
217913 }else if( zQuoted[0]=='N' ){
217917 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
237244 char *zQuoted;
237250 zQuoted = sqlite3_malloc64(nByte);
237252 if( zQuoted ){
237257 zQuoted[i++] = '"';
237259 if( *zIn=='"' ) zQuoted[i++] = '"';
237260 zQuoted[i++] = *zIn++;
[all …]