Home
last modified time | relevance | path

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

/third_party/sqlite/src/
H A Dsqlite3.c3153 ** in an array named azResult. Then azResult holds this content:
3156 ** azResult[0] = "Name";
3157 ** azResult[1] = "Age";
3158 ** azResult[2] = "Alice";
3159 ** azResult[3] = "43";
3160 ** azResult[4] = "Bob";
3161 ** azResult[5] = "28";
3162 ** azResult[6] = "Cindy";
3163 ** azResult
146189 char **azResult; /* Accumulated output */ global() member
[all...]
H A Dshell.c24654 char **azResult; in do_meta_command() local
24706 ** as an array of nul-terminated strings in azResult[]. */ in do_meta_command()
24708 azResult = 0; in do_meta_command()
24718 azNew = sqlite3_realloc64(azResult, sizeof(azResult[0])*n2); in do_meta_command()
24721 azResult = azNew; in do_meta_command()
24723 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0)); in do_meta_command()
24724 shell_check_oom(azResult[nRow]); in do_meta_command()
24731 /* Pretty-print the contents of array azResult[] to the output */ in do_meta_command()
24737 len = strlen30(azResult[ in do_meta_command()
[all...]

Completed in 136 milliseconds