Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c227970 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol); local
227971 if( zQuoted==0 ){
227973 }else if( zQuoted[0]=='N' ){
227977 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
249471 char *zQuoted; local
249477 zQuoted = sqlite3_malloc64(nByte);
249479 if( zQuoted ){
249484 zQuoted[i++] = '"';
249486 if( *zIn=='"' ) zQuoted[i++] = '"';
249487 zQuoted[i++] = *zIn++;
[all …]