Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a harmless compiler warning. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
1eb509a80761b23e00d9dac4d801c1ab |
| User & Date: | drh 2016-12-24 21:58:04.520 |
Context
|
2016-12-26
| ||
| 14:00 | Update the built-in SQLite to fix a potential (unreleased) corruption bug. check-in: 88d581dc5e user: drh tags: trunk | |
|
2016-12-24
| ||
| 21:58 | Fix a harmless compiler warning. check-in: 1eb509a807 user: drh tags: trunk | |
| 21:55 | Improved documentation of the "fossil sql" command. Add a note to the change log discussing recent enhancements to the "fossil sql" command. check-in: a52f196740 user: drh tags: trunk | |
Changes
Changes to src/sqlcmd.c.
| ︙ | ︙ | |||
208 209 210 211 212 213 214 |
**
** files_of_checkin(X) A table-valued function that returns info on
** all files contained in check-in X. Example:
** SELECT * FROM files_of_checkin('trunk');
*/
void cmd_sqlite3(void){
int noRepository;
| | | 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
**
** files_of_checkin(X) A table-valued function that returns info on
** 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**);
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;
|
| ︙ | ︙ |