How should I design my database API commands? [closed]
- by WebDev
I am developing a database API for a project, with commands for getting data from the database. For example, I have one gib table, so the command for that is:
getgib name alias limit fields
If the user pass their name:
getgib rahul
Then it will return all gib data whose name is like rahul. If an alias is given then it will return all the…