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?
Asked
Active
Viewed 2,569 times
1 Answers
2
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.

CL.
- 173,858
- 17
- 217
- 259
-
Nonetheless, it could be a feature as many others! – LS_ᴅᴇᴠ Nov 26 '13 at 10:30