MyDAC and FireMonkey in RAD XE5
Posted: Mon 21 Apr 2014 15:51
I have installed the Trial version of MySQL DAC (which is supposed to be a professional version). I have tested successfully the MyConnection, My Query and MyTable together with a Mobile FireMonkey Application. The Connection to a MySQL-Server builds up correctly - so far so good.
When I open the DataSet Manager in the IDE and try to Drag'n Drop a table or a field to the Form, it doesn't work. If I set up the same situation in a VCL-Application it works well.
I have created the fields before trying to drag'n Drop. Also the preview of the table is working correctly. I also can display the RecordCounts of the Table correctly using the code:
ShowMessage('Table RecordCount: '+IntToStr(MyTable1.RecordCount));
ShowMessage('Query RecordCount: '+IntToStr(MyQuery1.RecordCount));
Im planning to develop cross-platform applications for Desktop Windows and Mobile Android and iOS using a MySQL-database on a server.
Can someone explain to me why the DataSet Manager does not work together with FireMonkey? Is there another way to display and edit the table or part of it?
When I open the DataSet Manager in the IDE and try to Drag'n Drop a table or a field to the Form, it doesn't work. If I set up the same situation in a VCL-Application it works well.
I have created the fields before trying to drag'n Drop. Also the preview of the table is working correctly. I also can display the RecordCounts of the Table correctly using the code:
ShowMessage('Table RecordCount: '+IntToStr(MyTable1.RecordCount));
ShowMessage('Query RecordCount: '+IntToStr(MyQuery1.RecordCount));
Im planning to develop cross-platform applications for Desktop Windows and Mobile Android and iOS using a MySQL-database on a server.
Can someone explain to me why the DataSet Manager does not work together with FireMonkey? Is there another way to display and edit the table or part of it?