active questions tagged tclientdataset - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T09:52:43Zhttp://stackoverflow.com/feeds/tag/tclientdatasethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1859609/either-bof-or-eof-is-true-or-the-current-record-has-been-deleted-error-on-app0"either bof or eof is true or the current record has been deleted.." error on applyupdates that contains a delete operation.AhmetC2009-12-07T12:07:31Z2009-12-14T00:30:44Z
<p>Hello,</p>
<p>I am getting this error while resolving delete operation from ClientDatset to TAdoDataset (which bound to access table). I am using Delphi 2010.</p>
<p>My DatasetProvider between TClientDataset and TAdoDataset :</p>
<pre><code>object dspTarifeler: TDataSetProvider
DataSet = DM.qryTarifeler
ResolveToDataSet = True
Options = [poPropogateChanges, poUseQuoteChar]
end
</code></pre>
<p>Error occurs in this function which is called by TDataSetResolver.EndUpdate();</p>
<pre><code>procedure TCustomADODataSet.InternalGotoBookmark(Bookmark: Pointer);
begin
Recordset.Bookmark := POleVariant(Bookmark)^;
end;
</code></pre>
http://stackoverflow.com/questions/1859378/querying-a-tclientdataset-using-a-tadoquery2Querying a TClientDataSet using a TADOQueryJeedee2009-12-07T11:15:04Z2009-12-07T17:21:14Z
<p>My question is very simple. I have a TClientDataSet that is linked to a TADOQuery via a TDataSetProvider. I can put data into the TClientDataSet from the TADOQuery, but how do I get data from the TClientDataSet back into the TADOQuery?</p>
<p>Data is automatically transferred from the TADOQuery to the TClientDataSet when I run a query and then set the TClientDataSet's Active property to True, but if I deactivate the TADOQuery and then activate it again, how can I get the data back from the TClientDataSet?</p>
<p>I am running the same query on several databases and using the TClientDataSet to concatenate the results. This is working fine. My problem now is that I need to get the concatenated result set back from the TClientDataSet into the TADOQuery so that I can use the TADOQuery's SaveToFile procedure (for compatibility reasons). How can I do this?</p>
http://stackoverflow.com/questions/1848064/delphi-adoquery-result-concatenation-using-clientdataset0Delphi ADOQuery result concatenation using ClientDataSetJeedee2009-12-04T16:25:08Z2009-12-07T17:15:44Z
<p>I have written an application that allows a user to define a query, run it using a TADOQuery component, and save the report to their PC as an XML document (SaveAsFile passing in pfXML as the Format parameter) for offline viewing. This works fine.</p>
<p>What I now need to do is concatenate the results. What I mean by this is that I need to get at least two reports (with identical fields as they are using the same query) and join them together to make one report. For example:
Say I have a query that retrieves a list of users. I run this query on "System A" and "System B" where System A and System B are two separate systems. Once I have run the query on both systems, I have two separate report files, which I can load back into a TADOQuery component and then view on screen. What I need to do though is join the reports together, so instead of having to switch between the two reports, I can see all the results on screen at the same time.</p>
<p>I have been told that I can do this using a TClientDataSet but I'm relatively new to database programming and have no idea where to start with this. I've checked out the articles at <a href="http://delphi.about.com/od/usedbvcl/a/tclientdataset.htm" rel="nofollow">http://delphi.about.com/od/usedbvcl/a/tclientdataset.htm</a> but I'm still in the dark as nothing seems to do exactly what I need it to do.</p>
<p>I therefore have two questions:
1. Is using a TClientDataSet the best way to take two separate result sets and concatenate them? If there is a better way to do this, what is it?
2. If using a TClientDataSet is the best way to do this, how exactly would I go about doing this? How do you transfer data from a TADOQuery into a TClientDataSet and then back again? The basic flow of the processing needs to go something like this:</p>
<p>Report 1 (LoadFromFile) -> TADOQuery \</p>
<pre><code> ClientDataSet -> TADOQuery -> SaveToFile
</code></pre>
<p>Report 2 (LoadFromFile) -> TADOQuery /</p>
<p>All help would be appreciated on this. I really don't know where to start!</p>
http://stackoverflow.com/questions/1276997/delphi-clientdataset-edatabaseerror-missing-data-package-using-synapse0Delphi: Clientdataset: EDatabaseError: Missing Data-Package using Synapsepr0wl2009-08-14T09:52:26Z2009-11-30T08:07:38Z
<p>Hi!</p>
<p>From the client I am sending a string to the server what he should send me back. This time its a stream created by a ClientDataSet. Unfortunately receiving (or sending??) does not work at the moment.</p>
<blockquote>
<p>Note: I am using Synapse with blocking
sockets.
The server is multithreaded.</p>
</blockquote>
<p><strong>The Server:</strong></p>
<pre><code>procedure TTCPSocketThrd.Execute;
var s: String;
strm: TMemoryStream;
ADO_QUERY: TADOQuery;
DS_PROV: TDataSetProvider;
DS_CLIENT: TClientDataSet;
begin
CoInitialize(nil);
Sock := TTCPBlockSocket.Create;
try
Sock.Socket := CSock;
Sock.GetSins;
with Sock do
begin
repeat
if terminated then break;
//if within 60s no data is input, close connection.
s := RecvTerminated(60000,'|');
if s = 'getBENUds' then
begin
//ini ADO_QUERY
ADO_QUERY := TADOQuery.Create(Form1);
ADO_QUERY.ConnectionString := 'private :)';
ADO_QUERY.SQL.Clear;
ADO_QUERY.SQL.Add('sql_query');
ADO_QUERY.Open;
//ini DS_PROV
DS_PROV := TDataSetProvider.Create(ADO_QUERY);
DS_PROV.DataSet := ADO_QUERY;
//ini DS_CLIENT
DS_CLIENT := TClientDataSet.Create(ADO_QUERY);
DS_CLIENT.ProviderName := 'DS_PROV';
DS_CLIENT.SetProvider(DS_PROV);
//DSCLIENTDATASET bauen
strm := TMemoryStream.Create;;
DS_CLIENT.Open;
DS_CLIENT.SaveToStream(strm);
SendStream(strm);
end;
</code></pre>
<p><strong>The Client:</strong></p>
<pre><code>procedure TForm1.btnConnectClick(Sender: TObject);
begin
CSocket := TTCPBlockSocket.Create;
strmReply := TMemoryStream.Create;
ClientDataSet1 := TClientDataSet.Create(Form1);
try
CSocket.Connect('ip', 'port');
if CSocket.LastError = 0 then
begin
//Sending to the server I want data
CSocket.SendString('getBENUds|');
if CSocket.LastError = 0 then
begin
//Waiting for data
//Receiving the Stream in strmReply, 5000ms timeout
CSocket.RecvStream(strmReply, 5000);
//Loading the data into ClientDataSet
ClientDataSet1.LoadFromStream(strmReply);
ClientDataSet1.Open;
end;
end;
except
on E:Exception do
ShowMessage(E.Message);
end;
CSocket.Free;
end;
</code></pre>
<p>Now, whenever I start the server and click the connect button on the client, it SHOULD transfer the DataSet to the client and the TDBGrid SHOULD come to life.</p>
<p>Unfortunately this does not happen. Instead I get the error as stated in the title: Missing data provider or datapackage. But the data provider is set to DataSetProvider1 (in object inspector).</p>
<p>How can I make it work that the client TDBGrid is filled with data?</p>
http://stackoverflow.com/questions/1751788/why-dont-a-clientdataset-descendants-fields-appear-at-design-time1Why don't a ClientDataSet descendant's fields appear at design time?Barry2009-11-17T21:06:58Z2009-11-18T17:11:06Z
<p>I'm trying to write a component that inherits from TClientDataset. On the create of the component in design time I want to instantiate a list of common fields that are used within my framework. The code below will execute without errors and the field will appear at run time but not design time. Can anyone help me? I'm sure its something trivial!</p>
<pre><code>{ InheritedClientDataset }
constructor InheritedClientDataset.Create(AOwner: TComponent);
var
Field : TField;
begin
inherited;
Field := TField.Create(self);
Field.Name := 'ATestField';
Field.FieldName := 'Test';
Field.SetFieldType(ftInteger);
//Field.DataType := ftInteger;
Field.Size := 0;
Field.FieldKind := fkData;
self.Fields.Add(Field);
end;
</code></pre>
http://stackoverflow.com/questions/1749627/nesting-datasets-with-tclientdatasets-in-more-than-two-levels0Nesting datasets with TClientdatasets in more than two levels?Riaan de Villiers2009-11-17T15:25:24Z2009-11-17T15:25:24Z
<p>Hi</p>
<p>I would like to know if it is possible to nest a dataset within a dataset and then nest this data set with in another dataset. Therfore 3 levels of nesting. Currently I only manage to nest one dataset with in the other. When attemting to nest the third level the database manages to run successfully the first time I compile my program and I am able to enter data. When I then attempt to run the program the second time I an execption raised by EDBClient with message "mismatch in datapacket".</p>
<p>So I would like to know is it possible to nest 3 levels of datasets within each other?</p>
<p>Kind regards
Riaan </p>
http://stackoverflow.com/questions/501448/invalid-parameter-error-with-tclientdataset1Invalid parameter error with TClientdatasetRiaan de Villiers2009-02-01T19:44:45Z2009-11-13T00:08:13Z
<p>What is the reason for getting an 'invalid parameter error' when calling the CreateDataSet method in a TClientDataSet component. What causes this error.</p>
<p>Kind Regards
Riaan de Villiers</p>
http://stackoverflow.com/questions/1687253/tclientdataset-and-big-insert2TClientDataSet and big insertsilent2009-11-06T12:25:04Z2009-11-12T13:42:48Z
<p>In my application I use TADOQuery with select (MSSQL) and linked with it TClientDataSet. I have to insert about million records and ApplyUpdates.</p>
<p>So what I see in the SQL Server Profiler? I see that for <strong>each</strong> inserted row we have 3 queries: sp_prepare of insert script, sp_execute it with some values and sp_unprepare.</p>
<p>I want just to prepare sql <strong>once</strong> for all of the records before insert and unprepare it after. How can I do it?</p>
<p><strong>Added after</strong>:</p>
<p>In the query I have a script for the stored procedure execution:</p>
<pre><code>tmpQuery := DefineQuery(FConnection, [
'exec up_getOperatorDataSet ',
' @tablename = :tablename, ',
' @operator = :operator, ',
' @forappend = :forappend, ',
' @withlinksonly = :withlinksonly, ',
' @ids = :ids '
], [
Param(ftString, sTableName),
Param(ftInteger, FOperatorId),
Param(ftBoolean, opForAppendOnly in OpenParams),
Param(ftBoolean, opOnlyWithModelLinks in OpenParams),
Param(ftString, sIds)
], Result);
</code></pre>
<p>It selects all of the fields from table <em>sTableName</em> with some parameters.</p>
<p>Example of inserting from profiler:</p>
<p>step 1:</p>
<pre><code>declare @p1 int
set @p1=486
exec sp_prepare @p1 output,N'@P1 int,@P2 int,@P3 datetime,@P4 int,@P5 int,@P6 int,@P7 int,@P8 int,@P9 varchar(128),@P10 bit,@P11 numeric(19,4),@P12 smallint,@P13 smallint,@P14 smallint,@P15 smallint',N'insert into parser_prices
(operator_id, request_id, date, nights, model_hotel_id, model_meal_id, model_room_id, model_htplace_id, spo, hotelstop, price, frout_econom, frout_business, frback_econom, frback_business)
values
(@P1, @P2, @P3, @P4, @P5, @P6, @P7, @P8, @P9, @P10, @P11, @P12, @P13, @P14, @P15)
',1
select @p1
</code></pre>
<p>step 2:</p>
<pre><code>exec sp_execute 486,21,2000450,'2009-12-04 00:00:00',14,2118,22,-9555,18,'2009-10.MSK.Bali.13.10.09-27.03.10',0,15530.0000,3,3,3,3
</code></pre>
<p>step 3:</p>
<pre><code>exec sp_unprepare 486
</code></pre>
<p>and it is <strong>for all</strong> of the new rows.</p>
http://stackoverflow.com/questions/1009034/any-way-to-find-out-which-tfield-is-raising-edbclient-with-message-field-value-r2Any way to find out which TField is raising EDBClient with message 'Field value required.'?Fabio Gomes2009-06-17T19:19:14Z2009-08-26T11:54:12Z
<p>I have one TClientDataSet with several Fields and I'm getting this exception, I'm sure that I forgot to set one field value, but the question is, which Field?</p>
<p>Is there some way to find out quickly which field is raising this exception?</p>
<p><strong>EDIT</strong></p>
<p>I solved the problem, I was connecting the TClientDataSet to the wrong provider, which had a required field on the server but didn't have this field on the client.</p>
<p>But it still doesn't invalidate my question, I lost a lot of time to figure it out, and if I had some way to know which server side required field was raising this error it would be very quick to realise what was my mistake.</p>
<p><strong>EDIT 2</strong></p>
<p>Related QCs:</p>
<p><a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=5557" rel="nofollow">#5557</a> - Solved as "As Designed".</p>
<p><a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=54380" rel="nofollow">#54380</a> - Open</p>
http://stackoverflow.com/questions/1270826/delphi-clientdataset-edatabaseerror-on-open-with-providername-set0Delphi: Clientdataset: EDatabaseError on .Open; with ProviderName set.pr0wl2009-08-13T08:43:05Z2009-08-13T09:17:48Z
<p>So I'm having this code that processes what the client sends on a pattern. If he sends 'getBENUds', the server sends the DataSet for this table back using the SaveToString method.</p>
<p>Then, this is sent to the client. (I'm using <a href="http://www.ararat.cz/synapse/" rel="nofollow">Synapse</a>).</p>
<pre><code>procedure TTCPSocketThrd.Execute;
var s: String;
strm: TMemoryStream;
ADO_CON: TADOConnection;
ADO_QUERY: TADOQuery;
DS_PROV: TDataSetProvider;
DS_CLIENT: TClientDataSet;
begin
CoInitialize(nil);
Sock := TTCPBlockSocket.Create;
try
Sock.Socket := CSock;
Sock.GetSins;
with Sock do
begin
repeat
if terminated then break;
s := RecvTerminated(60000,'|');
if s = 'getBENUds' then
begin
//ini ADO_CON
ADO_CON := TADOConnection.Create(Form1);
ADO_CON.ConnectionString := 'not for public';
ADO_CON.LoginPrompt := false;
ADO_CON.Provider := 'SQLOLEDB.1';
ADO_CON.Open;
//ini ADO_QUERY
ADO_QUERY := TADOQuery.Create(ADO_CON);
ADO_QUERY.Connection := ADO_CON;
//ini DS_PROV
DS_PROV := TDataSetProvider.Create(ADO_CON);
DS_PROV.DataSet := ADO_QUERY;
//ini DS_CLIENT
DS_CLIENT := TClientDataSet.Create(ADO_CON);
DS_CLIENT.ProviderName := 'DS_PROV';
//SQLQUERY Abfrage
ADO_QUERY.SQL.Clear;
ADO_QUERY.SQL.Add('SELECT * FROM BENU');
ADO_QUERY.Open;
//DSCLIENTDATASET bauen
strm := TMemoryStream.Create;
DS_CLIENT.Open;
DS_CLIENT.SaveToStream(strm);
end
else if s = 'getBESTEds' then
...
</code></pre>
<p>The line it says: DS_CLIENT.Open an exception is thrown:</p>
<blockquote>
<p>An exception has been thrown: class EDatabaseError. Text: 'missing data-provider or data package'.</p>
</blockquote>
<p>The data-provider has been set as can be seen above to 'DS_PROV', so it has to be the missing data package.</p>
<p>But shouldn't the ClientDataSet get its data from the DataSetProvider which in turn gets it from the ADOQuery that gets the data from the database?</p>
<p>This is as far as I get with my level of knowledge. I hope its not too difficult, because in my eyes, everything I did was correct.</p>
http://stackoverflow.com/questions/669319/delphi-is-tclientdataset-thread-safe2Delphi - Is TClientDataset Thread Safe?Charles Faiga2009-03-21T13:37:01Z2009-07-12T11:42:10Z
<p>Hi </p>
<p>I have a TClientDataset that is managed in Thread 1.</p>
<p>In a different thread I have a cloned Image of the TClientDataset.</p>
<p>Will I run into threading problems?</p>
<p><strong>Edit</strong></p>
<p>The cloned image is used in a read only mode.</p>
http://stackoverflow.com/questions/1096674/how-can-i-detect-if-applyupdates-will-insert-or-update-data2How can I detect if ApplyUpdates will Insert or Update data?mjustin2009-07-08T07:51:12Z2009-07-10T20:45:09Z
<p>In the AfterPost event handler for a ClientDataSet, I need the information if the ApplyUpdates function for the current record will do an update or an insert.</p>
<p>The AfterPost event will be executed for new and updated records, and I do not want to declare a new Flag variable to indicate if a 'update' or ' insert' operation is in progress.</p>
<p>Example code:</p>
<pre><code>procedure TdmMain.QryTestAfterPost(DataSet: TDataSet);
begin
if IsInserting(QryTest) then
// ShowMessage('Inserting')...
else
// ShowMessage('Updateing');
QryTest.ApplyUpdates(-1);
end;
</code></pre>
<p>The application will write a log in the AfterPost method, after ApplyUpdate has completed. So this method is the place which is closest to the action, I would prefer a solution which completely can be inserted in this event handler.</p>
<p>How could I implement the IsInserting function, using information in the ClientDataSet instance QryTest?</p>
<p><strong>Edit</strong>: I will try ClientDataSet.UpdateStatus which is explained <a href="http://etutorials.org/Programming/mastering+delphi+7/Part+III+Delphi+Database-Oriented+Architectures/Chapter+14+Client+Server+with+dbExpress/The+Packets+and+the+Cache/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/849568/how-long-does-a-tdataset-bookmark-remain-valid2How long does a TDataset bookmark remain valid?Fabricio Araujo2009-05-11T19:10:12Z2009-05-12T06:35:05Z
<p>I have code like below in a project I'm working.</p>
<pre><code>procedure TForm.EditBtnClick(Sender:TObject);
begin
// Mark is form variable. It's private
Mark = cdsMain.GetBookmark;
// blabalbal
.
.
.
end;
procedure TForm.OkBtnClick(Sender:TObject);
var
mistakes: Integer;
begin
//Validation stuff and transaction control
//removed to not clutter the code
If cdsMain.ChangeCount <> 0 then
mistakes := cdsMain.AppyUpdates(-1);
cdsMain.Refresh;
try
cdsMain.GotoBookmark(Mark);
// Yes, I know I would have to call FreeBookmark
// but I'm just reproducing
except
cdsMain.First;
end;
end;
</code></pre>
<p>Personally, I do not use bookmarks much — except to reposition a dataset where I only moved the cursor position (to create a listing, fill a string list, etc). If I <code>Refresh</code>, update (especially when a filter can make the record invisible), refetch (<code>Close</code>/<code>Open</code>) or any operation that modifies the data in the dataset, I don't use bookmarks. I prefer to <code>Locate</code> on the primary key (using a <code>TClientDataset</code>, of course) or requery modifying the parameters.</p>
<p>Until when is a bookmark valid? Until a <code>Refresh</code>? Until a <code>Close</code>/<code>Open</code> is done to refetch data? Where does the safe zone end?</p>
<p>Consider in the answer I'm using <code>TClientDataset</code> with a <code>TSQLQuery</code> (DbExpress).</p>
http://stackoverflow.com/questions/655009/delphi-help-need-with-a-clientdataset0DELPHI - help need with a ClientDataSet Charles Faiga2009-03-17T16:32:21Z2009-03-18T06:28:55Z
<p>Hi </p>
<p>I have a ClientDataSet with the following data</p>
<pre><code>IDX EVENT BRANCH_ID BRANCH
1 E1 7 B7
2 E2 5 B5
3 E3 7 B7
4 E4 1 B1
5 E5 2 B2
6 E6 7 B7
7 E7 1 B1
</code></pre>
<p>I need to transform this data into</p>
<pre><code>IDX EVENT BRANCH_ID BRANCH
1 E1 7 B7
2 E2 5 B5
4 E4 1 B1
5 E5 2 B2
</code></pre>
<p>The only fields of importance are the BRANCH_ID and BRANCH
and BRANCH_ID must be unique </p>
<p>As there is a lot of data I do not what two have copies of it.</p>
<p><strong>QUESTION</strong>:
Can you suggest a way to transfrom the data using a <strong>Cloned version of the original</strong> data ?</p>
http://stackoverflow.com/questions/569254/is-it-possible-to-create-a-use-tclientdataset-in-non-visual-unit-or-inside-an-cla0Is it possible to create a use TClientDataSet in non visual unit or Inside an Class Object?Jlouro2009-02-20T11:39:06Z2009-02-20T23:42:28Z
<p>Is it possible to create and use a TClientDataSet inside an Object at runtime?</p>
<p>I like to make several changes in my Table and have those all Applied at the same time in cache like way, and TClientDataSet lets me do that. Know when I want to do this I have to build a TForm.</p>
<p>Is it Possible?</p>
<p>UPDATE</p>
<p>Can it be used, and How, without TDataSetProvider, and no TSQLQuery ?
Because I tried it and it gave me an error no Provider!!</p>
http://stackoverflow.com/questions/492198/anyone-that-has-a-partial-xsd-that-describes-the-metadata-section-of-delphi-tclie2Anyone that has a partial XSD that describes the METADATA section of Delphi TClientDataSet XML files?Jeroen Pluimers2009-01-29T15:56:12Z2009-01-31T20:13:55Z
<p>I know that you cannot fully describe the XML that the TClientDataSet with an XSD schema, as the ROW elements have attributes that have names that vary with the contents.</p>
<p>However, the METADATA section of such an XML should be.</p>
<p>So: is there anyone having a (partial) XSD that describes the METADATA portion of the XML that can be saved with Delphi TClientDataSets?</p>
<p>Regards,</p>
<p>Jeroen Pluimers</p>
<p>PS: Thanks for the pointers to XML->XSD conversion tools/sites; I should have written that I did that myself as well, but that generating that XSD in a proper way (i.e. one that covers all possibilities) will need input XML that cover all possibilities (like roundtrip, rowstate, etc).
I'll try to come up with a decent XSD that way and post it here.</p>
http://stackoverflow.com/questions/346142/the-invalid-field-type-error-with-tclientdatasets-i-dont-understand1The 'invalid field type' error with TClientDataSets I don't understandRiaan de Villiers2008-12-06T09:44:46Z2008-12-06T13:40:41Z
<p>Hi</p>
<p>I use nested database stuctures with TClientDataSets. I'm new to programming so my lingo is ten-to-one wrong. </p>
<p>My problem is as follows: I defined my database stucture and all the fields of the nested stuctures and then I called the CreatDataSet method of the master clientDataSet and it worked. I then wanted to add another data field to the master ClientDataSet. I then called the ClearData method of the Master ClientDataSet and then tried to create the new stucture by calling CreateDataSet again. It is here where I encounter my problem. I get the 'Invalid field type error' and I don't really know or understand what what the problem is. </p>
<p>So how do I create an exsta field after I called the createdata set method, then called the cleardata method, then added a field and then calling the createdataset method again without getting the 'invalid field type error?</p>
<p>Does anybody have any information about this problem. I use Delphi 2007</p>
<p>Kind Rgards</p>
<p>Riaan de Villiers </p>
http://stackoverflow.com/questions/138952/is-there-an-implementation-for-delphitclientdataset-in-c-for-mvs2Is there an implementation for Delphi:TClientDataSet in C++ for MVS?CoolMagic2008-09-26T11:48:53Z2008-09-29T19:02:24Z
<p>I want to migrate from Embarcadero Delphi to Visual Studio, but without a <a href="http://docs.codegear.com/docs/radstudio/radstudio2007/RS2007_helpupdates/HUpdate4/EN/html/delphivclwin32/DBClient_TClientDataSet.html" rel="nofollow">TClientDataset</a> class it is very difficult.
This class represents an in-memory dataset.</p>
<p>I can't find any class like <a href="http://docs.codegear.com/docs/radstudio/radstudio2007/RS2007_helpupdates/HUpdate4/EN/html/delphivclwin32/DBClient_TClientDataSet.html" rel="nofollow">TClientDataset</a>.</p>
<p>Can anyone help me find something like this please?</p>
http://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>