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
  • 732,580
  • 175
  • 1,330
  • 1,459
Yoseph Hagos
  • 11
  • 1
  • 3

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.
  • 173,858
  • 17
  • 217
  • 259