** This is the callback routine that the SQLite library ** invokes for each row of a query result. */
| 12505 | ** invokes for each row of a query result. |
| 12506 | */ |
| 12507 | static int callback(void *pArg, int nArg, char **azArg, char **azCol){ |
| 12508 | /* since we don't have type info, call the shell_callback with a NULL value */ |
| 12509 | return shell_callback(pArg, nArg, azArg, azCol, NULL); |
| 12510 | } |
| 12511 | |
| 12512 | /* |
| 12513 | ** This is the callback routine from sqlite3_exec() that appends all |
no test coverage detected