Use of "Fields Editor", Detaildatas per join or "Fields ed."
Posted: Mon 21 Feb 2011 09:32
Hello together,
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 and select some columns with the Fields Editor and have acces to the datas with or and get acces with without using the "fields editor". What is more efficient
Which is the faster way to show Detaildatas
or to define a fkLookUp-field in "Fields Editor" under use of a second UniQuery as LookupDataset.
At the time I use only MsSQL but for the future it is also planed to use MySQL and Firebird
best regrads
Gerd
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 tableCode: Select all
TableNo.Value = 'test';Code: Select all
select ID, No, Name from tableCode: 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.SupplierIDAt the time I use only MsSQL but for the future it is also planed to use MySQL and Firebird
best regrads
Gerd