Minh Hoang 0 Posted December 7, 2021 Please kindly advise when we use this component over the other and vice versa Share this post Link to post
Hans J. Ellingsgaard 21 Posted December 9, 2021 With sql databases always use the query component, you have much more control with it. Share this post Link to post
corneliusdavid 214 Posted December 9, 2021 Table components will bring back all the fields from each row returned whereas you can limit the number of fields returned with a query. Also, the result set is prepared on the server (using joins and where clauses and such) rather than bringing the data down to the client and then filtering it, so it can be much more efficient, especially noticeable over slow connections. Share this post Link to post
Fr0sT.Brutal 900 Posted December 10, 2021 Sometimes table and query are both just a thin wrapper over the same dataset class. Table allows nice combobox with table names and controls underlying query itself. With query you have to write query but it gives much more customization abilities. Share this post Link to post
Minh Hoang 0 Posted December 12, 2021 Thank you very much to Hans, David and Fr0sT. I really appreciate your valuable advices. Share this post Link to post