I changed from ADO to UniDac and have now some general questions.
Is there a performance advantage/disadvantage by using the "Fields Editor". I can
Code: Select all
select * from table
Code: Select all
TableNo.Value = 'test';
Code: Select all
select ID, No, Name from table
Code: Select all
Table.fieldByname('No').Value='test'
Which is the faster way to show Detaildatas
Code: Select all
select D.ID, D.No, S.Adress
from Table1 D
left outer join Table2 S on S.ID=D.SupplierID
At the time I use only MsSQL but for the future it is also planed to use MySQL and Firebird
best regrads
Gerd