Differences From Artifact [c9d03589cc]:
- File src/sqlcmd.c — part of check-in [b9a1a3b9d8] at 2017-03-01 15:35:43 on branch fossil-2.0 — Change references to "SHA1 hash" in comments and UI labels to be "artifact hash" or similar. (user: drh size: 7676) [more...]
To Artifact [f7e463dfe1]:
- File src/sqlcmd.c — part of check-in [d493544369] at 2017-03-07 20:38:56 on branch trunk — Do not run TH1 hooks on the "fossil sql" command. (user: drh size: 7695)
| ︙ | |||
210 211 212 213 214 215 216 217 218 219 220 221 222 223 | 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | + |
** all files contained in check-in X. Example:
** SELECT * FROM files_of_checkin('trunk');
*/
void cmd_sqlite3(void){
int noRepository;
const char *zConfigDb;
extern int sqlite3_shell(int, char**);
g.fNoThHook = 1;
noRepository = find_option("no-repository", 0, 0)!=0;
if( !noRepository ){
db_find_and_open_repository(OPEN_ANY_SCHEMA, 0);
}
db_open_config(1,0);
zConfigDb = g.zConfigDbName;
fossil_close(1, noRepository);
|
| ︙ |