Android Sqlite Load Extension / Mimic Stored Procedures

I am looking to simulate the behavior of a stored procedure in a sqlite database running on an Android device. I know that SQLite does not execute "stored procedures", but you can achieve the same effect by loading a user extension or in other ways. For example, in SQLite ADO.Net, you can create custom functions bound to the Sqlite core at run time.

Is there an equivalent for sqlite android flavor? Can I download an existing extension (in .so format) or write some type of Java function that can act like a stored procedure?

+3
source share
1 answer

sqlite?

, .

( .so) - Java-, ?

, .

+1

Source: https://habr.com/ru/post/1789998/


All Articles