Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/misc/
H A Dcsv.c324 char **azVal; /* Value of the current row */ member
672 sqlite3_free(pCur->azVal[i]); in csvtabCursorRowReset()
673 pCur->azVal[i] = 0; in csvtabCursorRowReset()
714 pCur->azVal = (char**)&pCur[1]; in csvtabOpen()
715 pCur->aLen = (int*)&pCur->azVal[pTab->nCol]; in csvtabOpen()
747 pCur->azVal[i] = zNew; in csvtabNext()
750 memcpy(pCur->azVal[i], z, pCur->rdr.n+1); in csvtabNext()
759 sqlite3_free(pCur->azVal[i]); in csvtabNext()
760 pCur->azVal[i] = 0; in csvtabNext()
779 if( i>=0 && i<pTab->nCol && pCur->azVal[i]!=0 ){ in csvtabColumn()
[all …]
/sqlite-3.40.0/test/
H A Dspeedtest1.c2196 static int xCompileOptions(void *pCtx, int nVal, char **azVal, char **azCol){ in xCompileOptions() argument
2197 printf("-- Compile option: %s\n", azVal[0]); in xCompileOptions()