Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix typo in the 'admin_sql' page. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
e654b300f6c4e71be1957a468614c58a |
| User & Date: | mistachkin 2020-09-10 22:15:51.141 |
Context
|
2020-09-10
| ||
| 22:31 | pikchrshow: support 4 different preview modes, clipboard copy of previewed content, and markup alignment option (left/center). check-in: d330c09135 user: stephan tags: trunk | |
| 22:15 | Fix typo in the 'admin_sql' page. check-in: e654b300f6 user: mistachkin tags: trunk | |
| 21:51 | Fix misplaced / missing db_unprotect() calls in the 'waliassetup' and 'setup_logo' pages. check-in: f273832a73 user: mistachkin tags: trunk | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
1523 1524 1525 1526 1527 1528 1529 |
@ <input type="submit" name="go" value="Run SQL">
@ <input type="submit" name="schema" value="Show Schema">
@ <input type="submit" name="tablelist" value="List Tables">
@ <input type="submit" name="configtab" value="CONFIG Table Query">
@ </form>
if( P("schema") ){
zQ = sqlite3_mprintf(
| | | 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 |
@ <input type="submit" name="go" value="Run SQL">
@ <input type="submit" name="schema" value="Show Schema">
@ <input type="submit" name="tablelist" value="List Tables">
@ <input type="submit" name="configtab" value="CONFIG Table Query">
@ </form>
if( P("schema") ){
zQ = sqlite3_mprintf(
"SELECT sql FROM repository.sqlite_schema"
" WHERE sql IS NOT NULL ORDER BY name");
go = 1;
}else if( P("tablelist") ){
zQ = sqlite3_mprintf(
"SELECT name FROM repository.sqlite_schema WHERE type='table'"
" ORDER BY name");
go = 1;
|
| ︙ | ︙ |