Which Mobile Devices Support Databases like SQLite?
Which Mobile Devices 开发者_运维知识库Support Databases ?
Iphone, Android, Symbian, J2ME, Palm, BlackBerry ?
- iPhone supports SQLite, since it's written in C, (Objective C being a superset of C). You can also use the native framework for persistent data, Core Data which is usually used with a SQLite Data Store
- Android supports SQLite, it has a package which is the standard package for database on the plateform
- Symbian supports SQLite, in fact it's built in the OS (as per SQLite page)
- J2ME does not support SQLite, though there is other options
- Blackberry supports SQLite since version 5 of its OS : Date Storage Overview
SQLite is specially design for light weight device like Mobile. So all the Mobile devices support the SQLite database
精彩评论