Tagged Questions

0
votes
2answers
63 views

“either bof or eof is true or the current record has been deleted..” error on applyupdates that contains a delete operation.

Hello, I am getting this error while resolving delete operation from ClientDatset to TAdoDataset (which bound to access table). I am using Delphi 2010. My DatasetProvider between TClientDataset and …
2
votes
3answers
97 views

Querying a TClientDataSet using a TADOQuery

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 …
0
votes
1answer
54 views

Delphi ADOQuery result concatenation using ClientDataSet

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 …
1
vote
3answers
142 views

Why don’t a ClientDataSet descendant’s fields appear at design time?

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 …
2
votes
4answers
233 views

TClientDataSet and big insert

In my application I use TADOQuery with select (MSSQL) and linked with it TClientDataSet. I have to insert about million records and ApplyUpdates. So what I see in the SQL Server Profiler? I see that …
0
votes
2answers
323 views

Delphi: Clientdataset: EDatabaseError: Missing Data-Package using Synapse

Hi! 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 …
0
votes
1answer
170 views

Delphi: Clientdataset: EDatabaseError on .Open; with ProviderName set.

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. Then, this is sent …
2
votes
3answers
497 views

How can I detect if ApplyUpdates will Insert or Update data?

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. The AfterPost event will be executed for …
2
votes
1answer
212 views

Any way to find out which TField is raising EDBClient with message ‘Field value required.’?

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? Is there some way to find out quickly …
2
votes
3answers
390 views

Delphi - Is TClientDataset Thread Safe?

Hi I have a TClientDataset that is managed in Thread 1. In a different thread I have a cloned Image of the TClientDataset. Will I run into threading problems? Edit The cloned image is used in a …
2
votes
3answers
304 views

How long does a TDataset bookmark remain valid?

I have code like below in a project I'm working. procedure TForm.EditBtnClick(Sender:TObject); begin // Mark is form variable. It's private Mark = cdsMain.GetBookmark; // blabalbal . . …
0
votes
3answers
662 views

DELPHI - help need with a ClientDataSet

Hi I have a ClientDataSet with the following data 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 I need …
0
votes
4answers
376 views

Is it possible to create a use TClientDataSet in non visual unit or Inside an Class Object?

Is it possible to create and use a TClientDataSet inside an Object at runtime? I like to make several changes in my Table and have those all Applied at the same time in cache like way, and …
0
votes
3answers
881 views

Delphi Question : Multiple Tables in a TClientDataset?

Is it possible to put the results from more than one query on more than one table into a TClientDataset? Just something like SELECT * from t1; SELECT * from t2; SELECT * from t3; I can't seem to …
2
votes
2answers
219 views

Anyone that has a partial XSD that describes the METADATA section of Delphi TClientDataSet XML files?

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. However, the METADATA …

1 2 next
15 30 50 per page