问题描述
我一直在寻找并发现,该机器人只支持的SQLite DATABSE,没有其他。这是真的吗?
I have been searching and have found out, that android supports only SQLite databse and no other. Is this true?
推荐答案
是的。而Android库提供本地支持,只SQLite的。当然,这并不意味着你绝对不能在Android上使用其他数据库;如果你需要使用其他的数据库,你就必须要么寻找已经存在的第三方库(1),或推出自己的API。
Yes. The Android library provides native support to only SQLite. Of course, this doesn't mean you absolutely can't use other databases on Android; if you need to use other databases, you'll have to either look for already-existing third-party libraries(1), or roll out your own API.
(1)仔细有:如果你找第三方库,确保他们为Android专门打造的,因为Android包含Java标准库的一个子集。如果他们不是专门针对Android的建成,有一种可能性,即图书馆将不会因缺课工作。
(1) Careful there: If you look for third-party libraries, make sure they're built specifically for Android, since Android includes only a subset of the Java standard library. If they're not specifically built for Android, there's a possibility that the libraries won't work due to missing classes.
这篇关于是否支持Android任何其他数据库系统比其他的SQLite?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!