Searched refs:azResult (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.c3217 ** in an array named azResult. Then azResult holds this content:
3220 ** azResult[0] = "Name";
3221 ** azResult[1] = "Age";
3222 ** azResult[2] = "Alice";
3223 ** azResult[3] = "43";
3224 ** azResult[4] = "Bob";
3225 ** azResult[5] = "28";
3226 ** azResult[6] = "Cindy";
3227 ** azResult
150387 char **azResult; /* Accumulated output */ member in struct:TabResult
[all...]
H A Dshell.c27498 char **azResult; local
27550 ** as an array of nul-terminated strings in azResult[]. */
27552 azResult = 0;
27562 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2);
27565 azResult = azNew;
27567 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0));
27568 shell_check_oom(azResult[nRow]);
27575 /* Pretty-print the contents of array azResult[] to the output */
27581 len = strlen30(azResult[
[all...]

Completed in 734 milliseconds