@ -6,8 +6,7 @@ Functions and Classes for handle Sqlite in [Bun](https://bun.sh/).
### getOrCreateSqlite(options = {})
### getOrCreateSqlite(options = {})
As options the default Parameters from [Bun](https://bun.sh/docs/api/sqlite) are available.
As options the default Parameters from [Bun](https://bun.sh/docs/api/sqlite) are available. The uri of the Sqlite can be set in the .env-file,
The uri of the Sqlite can be set in the .env-file,
```
```
NANO_SQLITE_PATH="./../storage/db.sqlite"
NANO_SQLITE_PATH="./../storage/db.sqlite"
@ -32,8 +31,7 @@ This functions Reads SQL-Files from a Directory and execute them in the Sqlite.
### Store
### Store
Store is a Abstract Class to extend a Class for an Single Table. There
Store is a Abstract Class to extend a Class for an Single Table. Set the name of the table in super(). There is no handling of columns or validating if the exists.
are no functions to validating Columns.
```
```
class <store-name>Store extends Store {
class <store-name>Store extends Store {
@ -45,7 +43,7 @@ class <store-name>Store extends Store {