views:

226

answers:

2

What is the best DBMS to use in iphone when there is huge data that is to be sorted and searched often. I though to use sqlite but it has many complexities. as when a table is created once it doesn't allow to change its structure, No way to define relationship etc.

Can any one guide me wat way to follow

Regards,

+1  A: 

You can change a table via ALTER TABLE.

Relationships are easy - use JOIN and numeric IDs.

ceejayoz
A: 

You can try Firebird , it works on OSX , I never tested on iphone but I will check how hard it is to recompile it on it

Mariuz