Skip to content

Commit f09c6e5

Browse files
author
Abhishek Singh
committed
v1.0.2 documentation update
1 parent e9ccd7d commit f09c6e5

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,6 @@ In the default authorization setting, a client is not allowed to drop any table.
204204

205205
```python
206206
result = client.execute("DROP TABLE stocks")
207-
pprint(result)
208207
```
209208

210209
```python
@@ -213,7 +212,13 @@ pprint(result)
213212
'items': []}
214213
```
215214

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+
217222
```python
218223

219224
with client:
@@ -255,8 +260,7 @@ with client:
255260

256261
## Backup
257262

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.
260264

261265
You can specify `backup_interval` (time in seconds) to control how frequently backup should be performed.
262266

0 commit comments

Comments
 (0)