Is there any way to use the sql server database on ios? I use lib jtds on android and I can make the connection but in ios?
Is there any way to use the sql server database on ios? I use lib jtds on android and I can make the connection but in ios?
If you want to access an external database directly from iOS, it will not be possible. You need to communicate with a web service, and this web service does connect to the database for queries / updates.
If you want to persist data locally on the device, you can use one of the specific solutions, such as Core Data or SQLite.