如何在 SQLite 中创建用户定义函数?
我正在 android 中开发一个应用程序,我需要在 sqlite 中创建一个 udf。可以在sqlite中创建它吗?如果是的话该怎么做?
I am developing an application in android and I need to create an udf in sqlite. Is it possible to create it in sqlite? And if yes how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQLite 不像 Oracle 或 MS SQL Server 那样支持用户定义函数。对于 SQLite,您必须在 C/C++ 中创建回调函数,并使用 sqlite3_create_function 调用。
不幸的是,Android 版 SQLite API 不允许直接通过 Java 调用
sqlite3_create_function
。为了让它工作,您需要使用 SQLite C 库 进行编译="http://developer.android.com/sdk/ndk/index.html" rel="noreferrer">NDK。如果您仍然有兴趣,请阅读 2.3 用户定义函数...
以下是创建函数的方法找到字符串的第一个字节。
然后将该函数附加到数据库。
最后,在sql语句中使用该函数。
SQLite does not have support for user-defined functions in the way that Oracle or MS SQL Server does. For SQLite, you must create a callback function in C/C++ and hook the function up using the sqlite3_create_function call.
Unfortunately, the SQLite API for Android does not allow for the
sqlite3_create_function
call directly through Java. In order to get it to work you will need to compile the SQLite C library with the NDK.And if you are still interested read 2.3 User-defined functions...
Here's how to create a function that finds the first byte of a string.
Then attach the function to the database.
Finally, use the function in a sql statement.