What Are The Internal And External Databases That Can Be Used With Android, Windows Phone And Ios?
Solution 1:
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)
Solution 2:
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)
Solution 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/)
Solution 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)
Solution 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.
Post a Comment for "What Are The Internal And External Databases That Can Be Used With Android, Windows Phone And Ios?"