Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix faulty SQL in the "db_unset()" routine. Ticket [31bd22c31fcc] |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
74f7f6e6ad30a59a508d65db1045e6b8 |
| User & Date: | drh 2009-08-15 16:50:36.000 |
References
|
2009-08-15
| ||
| 16:51 | • Fixed ticket [31bd22c31f]: sql error in db_unset plus 2 other changes artifact: 4ba101872f user: drh | |
Context
|
2009-08-15
| ||
| 17:45 | Remove obsolete "todo" files. Remove the obsolete src/VERSION file and references to that file in the makefiles. check-in: 137bff8294 user: drh tags: trunk | |
| 16:50 | Fix faulty SQL in the "db_unset()" routine. Ticket [31bd22c31fcc] check-in: 74f7f6e6ad user: drh tags: trunk | |
| 16:47 | Add the "circa" capability to the timeline. Check-in hyperlinks go to the "diff" page by default, rather than the "detail" page. check-in: 5a539f82dc user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1225 1226 1227 1228 1229 1230 1231 |
}
db_end_transaction(0);
}
void db_unset(const char *zName, int globalFlag){
db_begin_transaction();
if( globalFlag ){
db_swap_connections();
| | | | 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
}
db_end_transaction(0);
}
void db_unset(const char *zName, int globalFlag){
db_begin_transaction();
if( globalFlag ){
db_swap_connections();
db_multi_exec("DELETE FROM global_config WHERE name=%Q", zName);
db_swap_connections();
}else{
db_multi_exec("DELETE FROM config WHERE name=%Q", zName);
}
if( globalFlag && g.repositoryOpen ){
db_multi_exec("DELETE FROM config WHERE name=%Q", zName);
}
db_end_transaction(0);
}
int db_is_global(const char *zName){
|
| ︙ | ︙ |