views:

271

answers:

2

Hey, is it somehow possible to create a stored procedure, when using SQLite?

Thanks?

+3  A: 

SQLite has had to sacrifice other characteristics that some people find useful, such as high concurrency, fine-grained access control, a rich set of built-in functions, stored procedures, esoteric SQL language features, XML and/or Java extensions, tera- or peta-byte scalability, and so forth

Source : Appropriate Uses For SQLite

h3xStream
+3  A: 

SQLite does not have sprocs.

Anton Gogolev