Connecting to sqlite in iphone development
I have used sqlite database in some of my iphone applications bu开发者_开发技巧t as you know it is a lot harder than other languages such as java and php to use database. Is there any way to use database easier !? I found a framework in sourceforge here : http://mysql-cocoa.sourceforge.net/ but I think it is not for cocoa-touch. Is there any other framework to ease the sqlite pain !? thanx alot
Try FMDB
It's an sqlite Wrapper and works with IPhone.
Or use CoreData. It's not a database wrapper, but an object graph persistence framework, which may be what you want.
精彩评论