Is it somehow possible to create a stored procedure, when using SQLite?
Source : Appropriate Uses For SQLite |
|||
|
|
|
SQLite does not have sprocs. |
|||
|
|
|
If you are still interested, Chris Wolf made a prototype implementation of SQLite with Stored Procedures. You can find the details at his blog post: Adding Stored Procedures to SQLite |
|||
|
|
|
I think a key reason for having stored procs in a database is that you're executing SP code in the same process as the SQL engine. This makes sense for database engines designed to work as a network connected service but the imperative for SQLite is much less. Given that it run as a DLL in your current process it makes more sense to implement SP in the client language. |
|||||
|