I have coppied some of the embedded technology code to try. But I get an error on 'undeclared Identifier E' and 'then expected but unidentefied errorcode found'
code is as bellow
procedure TFMHome.FormCreate(Sender: TObject);
  procedure CreateDatabaseStruct;
  begin
    MyEmbConnection.Open;
    EmbInit.Execute;
    MyEmbConnection.Database := 'Local';
    MySettings.Open;
  end;
begin
  try
    CreateDir('.\data');
    CreateDir('.\data\Test');
    try
      MySettings.Open;
    except
      on E: EMyError do begin
          if E.ErrorCode = ER_NO_SUCH_TABLE then
          begin
            CreateDatabaseStruct;
            MySettings.Open;
          end
          else
            raise;
      end;
    end;
  finally
//    ShowState;
  end;
Using MyDac ver 8.7.24 in Delphi Berlin 10.1 on a windows 10 machine.
compiling for android sdk 24.3.3 32bit.
question 2 is there a libmysqld.dll file for Android
			
									
									
						Embedded MyDac not working on FMX Android System.
- 
				Daniel_IBD
 - Posts: 3
 - Joined: Mon 01 Aug 2016 07:03
 
Re: Embedded MyDac not working on FMX Android System.
1. The EMyError is defined in the MyClasses.pas module. To solve the issue related with the "Undeclared identifier error:", please add the MyClasses module to the uses section of your module.  
2. This question is not related to MyDAC functionality. Please contact MySQL server developers concerning obtaining a library for access to MySQL Embedded server on MacOS or Android.
			
									
									
						2. This question is not related to MyDAC functionality. Please contact MySQL server developers concerning obtaining a library for access to MySQL Embedded server on MacOS or Android.
- 
				Daniel_IBD
 - Posts: 3
 - Joined: Mon 01 Aug 2016 07:03
 
Re: Embedded MyDac not working on FMX Android System.
"This question is not related to MyDAC functionality."
To be quite honest that is esential to the operation of MyDac on an android or OSX. Not been able to give clear instruction as to how to obtain a vatial part all be it third party part to allow the component to work is not very good sservice.
This would be the same as Crisp packager packing the sealing the bags and not putting the crisps in them from the crisp maker. The product is rendered usless.
Emaracardero give great clear instructions on how to get started with there android and osx developement.
iOS requres getting software and licences form apple. Instrauctions all givern with Emaracrdero.
Time to take a lesson out of there customer service book!!!!!
			
									
									
						To be quite honest that is esential to the operation of MyDac on an android or OSX. Not been able to give clear instruction as to how to obtain a vatial part all be it third party part to allow the component to work is not very good sservice.
This would be the same as Crisp packager packing the sealing the bags and not putting the crisps in them from the crisp maker. The product is rendered usless.
Emaracardero give great clear instructions on how to get started with there android and osx developement.
iOS requres getting software and licences form apple. Instrauctions all givern with Emaracrdero.
Time to take a lesson out of there customer service book!!!!!
Re: Embedded MyDac not working on FMX Android System.
MySQL Embedded works only via client library. The question concerning obtaining a client library is not related to MyDAC functionality.