Paresh Mayani
Paresh Mayani

Reputation: 128448

which mobile platforms supports SQLite Database

As i am being an Android developer, and android is supporting SQLite database,

i would like to know that which are the other mobile platforms supports the SQLite Database so that i can make SQLite database common and can place it at one place, and thereafter i can make database transaction from different mobile platforms.

Upvotes: 2

Views: 1614

Answers (2)

Shouvik
Shouvik

Reputation: 11740

If I am not wrong, even meego and maemo have support for sql lite database... In-fact sql lite was created for hand held devices, it doesn't provide all the functionalities of full fledged SQL but then you need to consider its being run on a battery powered device!

Upvotes: 2

cynicaljoy
cynicaljoy

Reputation: 2087

"Due to its small size, SQLite is well suited to embedded systems, and is also included in Apple's iOS (where it is used for the SMS/MMS, Calendar, Call history and Contacts storage), Symbian OS, Google's Android, RIM's BlackBerry and Palm's webOS.[20] However, it is also suitable for desktop operating systems; Apple adopted it as an option in Mac OS X's Core Data API from the original implementation in Mac OS X 10.4 onwards."

Reference: http://en.wikipedia.org/wiki/SQLite#Adoption

Upvotes: 4

Related Questions