iOS and SQL Server

Hello,

I am curious to know if iOS can connect to a database server, or is it SQLite only? If it’s IOS only, how do you recommend talking to a SQL server on iOS?

Thanks,

Byron

iOS can only connect to SQLite within Xojo code. The recommendation for talking to any other type of database is to create a web service that interacts with the database and iOS interacts with that.

Thank you! Ah, so that’s why I couldn’t seem to find the answer in Xojo’s documentation. I did find the info on the sqlite (which is useful), but nothing about how to connect to a remote server. :wink:

Much appreciated.