I want to add a stored procedure that will return a result set with after passing 6 parameters in, in Sqlite. How can I go about it?
1 Answer
SQLite does not have stored procedures.
As an embedded database, SQLite has no client/server communication overhead, and is designed to be used together with a 'real' programming language. Write the procedure in that language.
1 Comment
LS_ᴅᴇᴠ
Nonetheless, it could be a feature as many others!