I nead to buid a query in SQLite for an android app I read that It's not possible to use math functions in the query, there 's any way to do it like load an extension or something similar.
any answear is wellcome, thanks in advance.
I nead to buid a query in SQLite for an android app I read that It's not possible to use math functions in the query, there 's any way to do it like load an extension or something similar.
any answear is wellcome, thanks in advance.
SQLite itself allows to add user-defined functions, but this is not exposed in the Android API.
You'd have to use the NDK: how to create a user defined function in SQLITE?