Harsha M V
Harsha M V

Reputation: 54949

Which Mobile Devices Support Databases like SQLite?

Which Mobile Devices Support Databases ?

Iphone, Android, Symbian, J2ME, Palm, BlackBerry ?

Upvotes: 2

Views: 910

Answers (2)

Thomas Joulin
Thomas Joulin

Reputation: 6650

  • 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

Upvotes: 6

Raxit
Raxit

Reputation: 824

SQLite is specially design for light weight device like Mobile. So all the Mobile devices support the SQLite database

Upvotes: 3

Related Questions