From 7eb13bf0d02209307dc0f51ec38459bb4ecfd14e Mon Sep 17 00:00:00 2001 From: HerrHase Date: Thu, 25 Jul 2024 00:01:53 +0200 Subject: [PATCH] adding --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e43c64c..3710847 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,9 @@ This functions Reads SQL-Files from a Directory and execute them in the Sqlite. ### Store -Store is a Abstract Class to extend a Class for an Single Table. There -are no functions to validating Columns. +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. ``` class Store extends Store { @@ -45,7 +46,7 @@ class Store extends Store { #### findOneById(id: integer) -Getting single row by Id. +Getting single row by id. #### create(data: object) @@ -53,8 +54,8 @@ Create a new row in a Table. #### update(id: integer, data: object) -Update single row by Id. +Update single row by id. #### remove(id: integer) -Remove single row by Id. +Remove single row by id.