Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c227576 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol); local
227577 if( zQuoted==0 ){
227579 }else if( zQuoted[0]=='N' ){
227583 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
248739 char *zQuoted; local
248745 zQuoted = sqlite3_malloc64(nByte);
248747 if( zQuoted ){
248752 zQuoted[i++] = '"';
248754 if( *zIn=='"' ) zQuoted[i++] = '"';
248755 zQuoted[i++] = *zIn++;
[all …]