Is it possible to have a 开发者_JAVA技巧sqlite db in memory in iOS?
This works as you'd expect within iOS - you can simply open an in-memory database using :memory:
instead of the file name, as per usual.
That said, you'll obviously need to be aware of the amount of memory you're using due to the lower available memory level.
精彩评论