Use of Sqlite Stored Procedure in Android

后端 未结 1 1788
野性不改
野性不改 2021-02-06 19:28

I have read that we can not create Stored Procedure in SQLite, But I\'d to know is there any third party library available by which we can use the same or any other way to creat

相关标签:
1条回答
  • 2021-02-06 20:21

    SQLite does not support stored procedures. Neither in Android, nor in other environments. There has been efforts made to include stored procedures in SQLite like this one, but these have been far from being perfect.

    Reassess your needs for a stored procedure in a resource constrained environment such as Android, and see if you really need them. Stored procedures are better suited for those DB engines that run on a server platform.

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