“没有这样的函数:REGEXP”在 iOS 上的 sqlite3 中
是否可以重建 libsqlite3.dylib 添加 regexp 函数?或者使用create_sqlite_function来做到这一点?
Is it possible to rebuild libsqlite3.dylib with the regexp function added? Or use create_sqlite_function to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 SQLite 文档所说:
所以你应该能够像你自己建议的那样使用
create_sqlite_function
。As the SQLite documentation says:
so you should be able to use
create_sqlite_function
like you already suggested yourself.创建一个正则表达式函数,然后在运行时创建sqlite函数,并在创建sqlite函数中传递正则表达式函数和数据库实例的地址,并享受在运行时查询正则表达式到sqlite的乐趣。我也做过,效果很好
create a regex function and then create sqlite function in your run time and pass the address of regex function and db instance in create sqlite function and enjoy querying regex in runtime to sqlite. I have also done that it works fine