You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -204,7 +204,6 @@ In the default authorization setting, a client is not allowed to drop any table.
204
204
205
205
```python
206
206
result = client.execute("DROP TABLE stocks")
207
-
pprint(result)
208
207
```
209
208
210
209
```python
@@ -213,7 +212,13 @@ pprint(result)
213
212
'items': []}
214
213
```
215
214
216
-
###
215
+
216
+
### Errors
217
+
218
+
Error details, if any, is returned in the `error` key as shown below.
219
+
220
+
In the example below, the table `STUDENTS` is not found.
221
+
217
222
```python
218
223
219
224
with client:
@@ -255,8 +260,7 @@ with client:
255
260
256
261
## Backup
257
262
258
-
With `sqlite-rx`, database backup can be scheduled to run regularly during Server startup.
259
-
Under the hood, this uses SQLite's Online [Backup](https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.backup) API. The Backup function runs as a daemon thread and it makes backup even while the database is being accessed by other clients.
263
+
Database backup can be scheduled to run regularly during Server startup. Under the hood, this uses SQLite's Online [Backup](https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.backup) API. The Backup function runs as a daemon thread and it makes backup even while the database is being accessed by other clients.
260
264
261
265
You can specify `backup_interval` (time in seconds) to control how frequently backup should be performed.
0 commit comments