Reputation: 205
Is there any way to access a SQL Server database using Delphi XE5 FireMonkey in an Android or iOS application? There doesn't appear to be a way to do it using FireDAC or UniDAC.
Upvotes: 3
Views: 3414
Reputation: 113
DP
Upvotes: 0
Reputation: 6848
Currently there are no clients available in Delphi that would allow you to access a SQL Server from Android and iOS.
FireDAC is the standard way to access, but mobile is only available to access Interbase (ToGo version) and SQLite.
The logical thing would be to use DataSnap or Webservice on the server.
Upvotes: 0
Reputation: 47889
The recommended way to access SQL Server from iOS and Android is via DataSnap. You have to make a DataSnap-Server on a Windows-Machine that connects to SQL Server. The iOS and Android clients then connect to the DataSnap-Server.
Upvotes: 3