sqlite android math functions

后端 未结 1 1043
遥遥无期
遥遥无期 2020-12-22 12:16

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 s

相关标签:
1条回答
  • 2020-12-22 12:57

    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?

    0 讨论(0)
提交回复
热议问题