** This is the callback routine that the SQLite library ** invokes for each row of a query result. */
| 17806 | ** invokes for each row of a query result. |
| 17807 | */ |
| 17808 | static int callback(void *pArg, int nArg, char **azArg, char **azCol){ |
| 17809 | /* since we don't have type info, call the shell_callback with a NULL value */ |
| 17810 | return shell_callback(pArg, nArg, azArg, azCol, NULL); |
| 17811 | } |
| 17812 | |
| 17813 | /* |
| 17814 | ** This is the callback routine from sqlite3_exec() that appends all |