0

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?

marc_s
  • 704,970
  • 168
  • 1,303
  • 1,425

1 Answers1

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.
  • 165,803
  • 15
  • 203
  • 239