mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
10 lines
425 B
Markdown
10 lines
425 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. This file can be used for further analysis later.
|
|
|
|
The database table contains the following columns (all stored as `TEXT` type):
|
|
|
|
```
|
|
['serviceName', 'jobKey', 'id', 'size', 'rooms', 'price', 'address', 'title', 'link', 'description', 'image']
|
|
```
|