We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 201fe06 commit 475ea9eCopy full SHA for 475ea9e
MyApp/_pages/sqlite-request-logs.md
@@ -105,15 +105,15 @@ When needed you can export your Request Logs to CSV for easy import into externa
105
`sqlite3` utility, e.g:
106
107
:::sh
108
-sqlite3 -header -csv requests_<YYYY>-<MM>.db "SELECT * FROM RequestLog" > output.csv
+`sqlite3 -header -csv requests_<YYYY>-<MM>.db "SELECT * FROM RequestLog" > output.csv `
109
:::
110
111
### Custom Exports
112
113
For more complex queries, you can also use the `.mode csv` and `.output` commands within the SQLite shell:
114
115
116
-sqlite3 requests_<YYYY>-<MM>.db
+`sqlite3 requests_<YYYY>-<MM>.db`
117
118
119
Then set export parameters before running the query and exiting:
0 commit comments