Reputation: 11
I want to build my project to an android application within Delphi Berlin 10.1. The only thing is that when I change my target platform to Android it 'Cannot resolve unit name 'FireDac.phys.mysql'.
While everything is ok and I can build in the target platform 32-bit windows.
Is there a special path location for android I have to specify? or am I missing something else?
Upvotes: 0
Views: 3376
Reputation: 28516
Android has built in support only for SQL Lite database Android Storage Options
Unit you are linking to contains MySQL Server support that is not available on Android.
On Android side you can use FireDAC.Phys.SQLite
Upvotes: 1