Skip to content

Commit 475ea9e

Browse files
committed
Update sqlite-request-logs.md
1 parent 201fe06 commit 475ea9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MyApp/_pages/sqlite-request-logs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,15 @@ When needed you can export your Request Logs to CSV for easy import into externa
105105
`sqlite3` utility, e.g:
106106

107107
:::sh
108-
sqlite3 -header -csv requests_<YYYY>-<MM>.db "SELECT * FROM RequestLog" > output.csv
108+
`sqlite3 -header -csv requests_<YYYY>-<MM>.db "SELECT * FROM RequestLog" > output.csv `
109109
:::
110110

111111
### Custom Exports
112112

113113
For more complex queries, you can also use the `.mode csv` and `.output` commands within the SQLite shell:
114114

115115
:::sh
116-
sqlite3 requests_<YYYY>-<MM>.db
116+
`sqlite3 requests_<YYYY>-<MM>.db`
117117
:::
118118

119119
Then set export parameters before running the query and exiting:

0 commit comments

Comments
 (0)