Can iPhone use only SQLite database?

Can iPhone use other databases besides SQLite, for example MySQL?

+3
source share
3 answers

iPhone can only use SQLite as a database directly on the device. This means that iPhone does not have a MySQL server. But you can and can have a (your own) MySQL server server to which iPhone applications connect. But Apple does not provide a server, so you will have to pay for maintenance costs.

+5
source

No more true!

RIMA RDM Embedded Database SDK iPhone. , , , .

, Mac iPhone Simulator.

raima.com/iphone

+2

SQLite is installed on all iPhones. Theoretically, you can start other databases, but since you cannot start other processes, you cannot start MySQL. MySQL requires a separate process (mysqld daemon).

+1
source

All Articles