Fix file extensions in USAGE, update IMDB experiment/example.

This commit is contained in:
Mahlon E. Smith 2025-11-04 18:18:03 -08:00
parent 76718fa49f
commit 363ba15be4
Signed by: mahlon
SSH key fingerprint: SHA256:dP84sRGKZRpOOiPD/+GuOq+SHSxEw9qi5BWLQobaHm0
3 changed files with 14 additions and 14 deletions

View file

@ -82,13 +82,13 @@ var db = newLbugDatabase()
```
```nim
# "db" is persistent, stored in the file "data.kz".
var db = newLbugDatabase("data.kz")
# "db" is persistent, stored in the file "data.db".
var db = newLbugDatabase("data.db")
```
The database path is retained, and can be recalled via `db.path`.
```nim
db.path #=> "data.kz"
db.path #=> "data.db"
```
### Database Configuration
@ -110,7 +110,7 @@ object as the second argument to `newLbugDatabase()`:
```nim
# Open a readonly handle.
var db = newLbugDatabase( "data.kz", lbugConfig( read_only=true ) )
var db = newLbugDatabase( "data.db", lbugConfig( read_only=true ) )
```
### The Connection