• Description has changed:

Diff:

--- old
+++ new
@@ -1,15 +1,30 @@
-Generate automated SQL for general IO. Will require 
-# Singular Record Retrieval
+# Objective
+Generate automated Sqlite3 supported SQL for general IO queries.
+
+# Purpose of Feature
+Standardise the the interface between database and the created data structures to ease development. 
+
+# Key Areas of Focus
+
+## Singular Record Retrieval
 * get_record( primary_key )
 * get_records()
 * get_records( filter_object )
-# Record Creation
+## Record Creation
 * create_record( object_properties )
-* create_record( std::vector<objects> )
+* create_record( std::vector< objects > ) [1]
 * create_record( size_t objc, data**objv )
-# Record Update
+## Record Update
 * update_record( primary_key, object_properties )
  * update_records_by_filter( filter_object )
- # Record Deletion
+## Record Deletion
 * delete_record( primary_key )
 * delete_records_by_filter( filter_object )
+    
+
+-----
+
+
+# Notes
+1.     Will require c++ flag
+2.     Add include flag as required.