What are the internal and external databases that can be used with Android, Windows Phone and iOS? [closed]

微笑、不失礼 提交于 2019-12-20 01:39:53

问题


I want to know what are the internal and external databases that I can use with each mobile OS.


回答1:


SQLite is included in iOS and Android. There is also a CodePlex library for using Sqlite on Windows Phone (the built in database is Sql CE)




回答2:


SQLite is a popular choice for each of them. It's light-weight, with all the database access in-process, and the storage in a single file (plus journal).

It is included in the iOS and Android SDKs. There are distributions for Windows Phone 7.

Generally, you will not use external databases per se, though of course it is common to use internet APIs (which in turn will usually use databases)




回答3:


External database SQLite works on: iOS,Android and Windows phone.

Internal Database:

1) CoreData and NSUserDefault memory cache for iOS .

2) Isolated Storage for Windows phone (http://winphone7db.codeplex.com/)




回答4:


Sybase SQL Anywhere Studio has UltraLite database as a part.
This database has versions running on Windows Mobile, iOS, Android, Blackberry, and lets you synchronize through HTTP/HTTPS (as far as I know, you can use Windows Mobile databases on Windows Phone)




回答5:


I use http://www.jstorage.info/ so i don't even need to write code for each kind of system. jQuery plugin for that.




回答6:


For .NET programming on Windows Mobile and Windows Phone, you could use TurboDB or VistaDB.



来源:https://stackoverflow.com/questions/8767074/what-are-the-internal-and-external-databases-that-can-be-used-with-android-wind

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!