Differences From Artifact [37ef9d7dfd]:
- File src/db.c — part of check-in [569f4b0e04] at 2016-08-21 02:17:54 on branch omit-db_name — Fix the code in db_open_config() that checks the current 'attachment mode' for the configuration database against the requested one. (user: mistachkin size: 103203)
To Artifact [7e577017c0]:
- File src/db.c — part of check-in [a12d712203] at 2016-08-22 02:22:59 on branch omit-db_name — Slightly improve clarity of the db_database_slot() function. (user: mistachkin size: 103206) [more...]
| ︙ | |||
985 986 987 988 989 990 991 | 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 | - + |
** are slots 2 and higher.
**
** Return -1 if zLabel does not match any open database.
*/
int db_database_slot(const char *zLabel){
int iSlot = -1;
Stmt q;
|
| ︙ |