Connect Sql Server database to iOS Swfit Program

-1

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?

    
asked by anonymous 14.03.2018 / 15:35

1 answer

0

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.

    
21.03.2018 / 18:18