-
Notifications
You must be signed in to change notification settings - Fork 0
[FEATURE] create parser for queries #22
Copy link
Copy link
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Projects
Status
Todo
implement parser for database.
" cr 'db1' "" dl 'db1' "" run 'db1' "" cr tab 'tab1' "" rd tab 'tab1' "" up tab 'tab1' "" dl tab 'tab1' "" cr row 'row1' "" rd row 'row1' "" up row 'row1' "" dl row 'row1' "" cr row 'row1', 'hello' "" rd row 'row1', 1"" up row 'row1', 'hello', 'bye' "" dl row 'row1', 'bye' "in directory
src/queriesimplement parser for database queries, use CRUD pattern (create, read, update, delete). in general, the goal is to implement first working version of parser.the commands ain't perfect so they can be implemented differently. for example queries can look like SQL's INSERT, UPDATE, DELETE, CREATE etc.
also, don't forget to use doc comments for building nice documentation later (however, if u want I can do that)