mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
22 lines
430 B
Markdown
22 lines
430 B
Markdown
### SQLite Adapter
|
|
|
|
This adapter stores search results in an SQLite database. By default, the database is located at `db/listings.db`, but you can configure a custom location. The file can be used for analysis later.
|
|
|
|
The table contains the following columns (all stored as `TEXT`):
|
|
|
|
```json
|
|
[
|
|
"serviceName",
|
|
"jobKey",
|
|
"id",
|
|
"size",
|
|
"rooms",
|
|
"price",
|
|
"address",
|
|
"title",
|
|
"link",
|
|
"description",
|
|
"image"
|
|
]
|
|
```
|