What´s the diference between a UDF and a saved Query in SQLite?
How 开发者_如何学JAVAcan I "script" inside a SQLite database?
Thanks
SQLite is just a library, its code is running inside your application. You just pass your application's functions to SQLite then they will be accessible inside the SQL statements. For example in PHP you will use sqlite_create_function()
.
精彩评论