Searched refs:azResult (Results 1 – 3 of 3) sorted by relevance
61 p->azResult = azNew; in sqlite3_get_table_cb()72 p->azResult[p->nData++] = z; in sqlite3_get_table_cb()141 if( res.azResult==0 ){ in sqlite3_get_table()145 res.azResult[0] = 0; in sqlite3_get_table()174 res.azResult = azNew; in sqlite3_get_table()176 *pazResult = &res.azResult[1]; in sqlite3_get_table()188 if( azResult ){ in sqlite3_free_table()190 azResult--; in sqlite3_free_table()191 assert( azResult!=0 ); in sqlite3_free_table()193 for(i=1; i<n; i++){ if( azResult[i] ) sqlite3_free(azResult[i]); } in sqlite3_free_table()[all …]
10250 char **azResult; local10302 ** as an array of nul-terminated strings in azResult[]. */10304 azResult = 0;10314 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2);10317 azResult = azNew;10320 shell_check_oom(azResult[nRow]);10327 /* Pretty-print the contents of array azResult[] to the output */10333 len = strlen30(azResult[i]);10343 azResult[j] ? azResult[j]:"");10349 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]);[all …]
2833 ** in an array named azResult. Then azResult holds this content:2836 ** azResult[0] = "Name";2837 ** azResult[1] = "Age";2838 ** azResult[2] = "Alice";2839 ** azResult[3] = "43";2840 ** azResult[4] = "Bob";2841 ** azResult[5] = "28";2842 ** azResult[6] = "Cindy";2843 ** azResult[7] = "21";