Compare commits

..

No commits in common. 'main' and 'development' have entirely different histories.

@ -32,9 +32,8 @@ 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. Set the name Store is a Abstract Class to extend a Class for an Single Table. There
of the table in super(). There is no handling of columns or validating if the are no functions to validating Columns.
exists.
``` ```
class <store-name>Store extends Store { class <store-name>Store extends Store {
@ -46,7 +45,7 @@ class <store-name>Store extends Store {
#### findOneById(id: integer) #### findOneById(id: integer)
Getting single row by id. Getting single row by Id.
#### create(data: object) #### create(data: object)
@ -54,8 +53,8 @@ Create a new row in a Table.
#### update(id: integer, data: object) #### update(id: integer, data: object)
Update single row by id. Update single row by Id.
#### remove(id: integer) #### remove(id: integer)
Remove single row by id. Remove single row by Id.

Loading…
Cancel
Save