Since i am new to iphone and mac dev, which is the suggested way to connect your application to an sql server/sql server express 2005 database (in my case to sync data with sqlite)?
Thank you
Since i am new to iphone and mac dev, which is the suggested way to connect your application to an sql server/sql server express 2005 database (in my case to sync data with sqlite)?
Thank you
I would suggest that you look to setup web services to do custom synchronisation - sqlite is not MSSqlServer in any way shape or form, and I am not aware of any libraries that will do auto sync, so the best approach is likely to be to take the domain knowledge of how your data (or your entities) can change at each end of the process, and write web services to reflect those changes: sorry - no magic bullet for this one.
(Edited to add) the Web services server end would be MS and the web services client would be the iPhone.