Delphi Question : Multiple Tables in a TClientDataset? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T00:26:29Zhttp://stackoverflow.com/feeds/question/111287http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/111287/delphi-question-multiple-tables-in-a-tclientdataset0Delphi Question : Multiple Tables in a TClientDataset? ksoftware2008-09-21T15:59:07Z2008-09-21T21:19:38Z
<p>Is it possible to put the results from more than one query on more than one table into a TClientDataset?</p>
<p>Just something like</p>
<p>SELECT * from t1;
SELECT * from t2;
SELECT * from t3;</p>
<p>I can't seem to figure out a way to get a data provider (SetProvider) to pull in results from more than one table at a time.</p>
http://stackoverflow.com/questions/111287/delphi-question-multiple-tables-in-a-tclientdataset/111305#1113050Answer by Chris Woodruff for Delphi Question : Multiple Tables in a TClientDataset? Chris Woodruff2008-09-21T16:05:47Z2008-09-21T16:05:47Z<p>There is not a way to have multiple table data in the same TClientDataSet like you referenced. The TClientDataSet holds a single cursor for a single dataset.</p>
http://stackoverflow.com/questions/111287/delphi-question-multiple-tables-in-a-tclientdataset/111324#1113242Answer by Ralph Rickenbach for Delphi Question : Multiple Tables in a TClientDataset? Ralph Rickenbach2008-09-21T16:11:53Z2008-09-21T16:17:24Z<p>The only way would be to join the tables. But then you have to provide the criteria of the join through joined foreign keys.</p>
<pre><code>select * from t1, t2, t3 where t1.key = t2.key and t2.key = t3.key;
</code></pre>
<p>Now suppose you came up with a key (like LineNr) that would allow for such a join. You then could use a full outer join to include all records (important if not all tables have the same number of rows). But this would somehow be a hack. Be sure not to take auto_number for the key, as it does not reuse keys and therefore tends to leave holes in the numbering, resulting in many lines that are only partially filled with values.</p>
<p>If you want to populate a clientdataset from multiple tables that have the same set of fields, you can use the UNION operator to do so. This will just use the same columns and combine all rows into one table.</p>
http://stackoverflow.com/questions/111287/delphi-question-multiple-tables-in-a-tclientdataset/112219#1122194Answer by Nick Hodges for Delphi Question : Multiple Tables in a TClientDataset? Nick Hodges2008-09-21T21:19:38Z2008-09-21T21:19:38Z<p>ClientDatasets can contain fields that are themselves other datasets. So if you want to create three tables in a single dataset, create three ClientDatasets holding the three result sets that you want, and then you can put them into a single clientdataset.</p>
<p>This article:</p>
<p><a href="http://dn.codegear.com/article/29001" rel="nofollow">http://dn.codegear.com/article/29001</a></p>
<p>shows you how to do it both at runtime and at designtime. Pay particular attention to the section entitled:</p>
<p>"Creating a ClientDataSet's Structure at Runtime using TFields"</p>