I have a select which joins the 2 tables, so there are columns with similar names from these tables, so now when retrieving the results FireDac adds underscore 1 to the 2nd column name to differentiate between the 2
Select * from Table1 inner join Table2 on
Table1.id = Table2.id
When getting records from fields with similar names I would have to do this...
Dataset.FieldByName('Name').asInteger
Dataset.FieldByName('Name_1').asInteger
I would like to know if there is a setting to change the _1 to something else, reason I want to change this is that we used to use Interbase which added just a 1.