Tagged Questions

tclientdataset represents an in-memory dataset implementing a database-independent dataset. It is defined in the DBClient.pas unit.

learn more… | top users | synonyms

9
votes
1answer
579 views

ClientDataset.RefreshRecord no longer works in Delphi XE for joined tables - any workarounds?

TClientDataset.RefreshRecord no longer generates the table join part of SQL when trying to refresh a record on a ClientDataset connected to a dataset with a joined table in the SQL statement. As a ...
9
votes
3answers
1k views

Moving Columns in a DBGrid seems to move the attached DataSet fields

I observed something last week that I did not expect, and will describe below. I am curious as to why this happens. Is it something internal to the TDataSet class, an artifact of the TDBGrid, or ...
7
votes
2answers
1k views

How can i add fields to a clientdataset at runtime?

I have aTClientdataset, which is provided by a TTable’s dataset. The dataset has two fields: postalcode (string, 5) and street (string, 20) At runtime I want to display a third field (string, 20). ...
6
votes
2answers
200 views

Correct way to check if a blob field has already been fetched when using poFetchBlobsOnDemand

I have a TClientDataSet with several records, and I want o load all the records, but load the blob field on Demand, one at a time. I noticed that calling FetchBlobs twice fetches the blob twice and ...
5
votes
3answers
123 views

Delphi7's error message

I'm new to Delphi7. When I try to use the editor's "add all fields" feature on a TClientDataSet object a messagebox (the classic error message box) appear with the message "no value for parameter '( ...
4
votes
3answers
3k 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 ...
4
votes
3answers
915 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 . . ...
4
votes
3answers
959 views

Delphi - Is TClientDataset Thread Safe?

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 read ...
3
votes
1answer
118 views

Reconcile Error: Has anyone had problems with truncated error messages?

I'm here again to ask for a help to you. This time I believe that few will respond given the great particularity of the problem which I will relate. I'm starting in the world of DataSnap, and still ...
3
votes
0answers
117 views

TClientDataSet and processing records with StatusFilter

I'm using a TClientDataSet as a local dataset without the provider concept. After working with it a method is called that should generate the corresponding SQL statements using the StatusFilter to ...
3
votes
1answer
154 views

How do I use an aggregate field in a TClientDataSet that is a BIGINT (TLargeintField)?

I need to calculate the Max value of a field, but I'm having troubles doing so. Let's say that my field is named 'VALUE0'. I would like to use the aggregate functions of TClientDataSet to do so. What ...
3
votes
3answers
227 views

Master-detail using ClientDataSet.AppyUpdates with separate DataSetProvider

I use two ClientDataSets for a master-detail relationship with a DataSetProvider for each CDS. I don’t use a nested CDS for the detail, since I do an in-memory filtering for the master-detail ...
3
votes
1answer
278 views

Delphi: Access Nested Dataset master information when applying update

Can I access the parent dataset information (like MyField.NewValue) in the BeforeUpdateRecord event of a provider when applying the updates to the nested dataset? Reason: When I apply updates to a ...
3
votes
3answers
313 views

Read a Delphi TClientDataset Files with .NET

I need to read Files that are written with the TClientDataset class from Delphi with .NET Code. The Solution mentioned here does not work for me.
3
votes
2answers
996 views

Using Delphi7 TClientDataSet: is it possible to have it save it's XML contents in an indented format

I am using Delphi7 ClientDataSet to read and write xml files for some of my data. Howerver, when I want to browse this outside the program (double clicking the xml in Windows Explorer) I get the 'An ...
3
votes
3answers
483 views

Object Pascal: TClientDataset Deletions

I'm creating an in-memory dataset using a TClientDataset to use as a receive buffer. Adding data is great, but once I go to process it I want to be able to remove the row from the dataset. Calling ...
3
votes
0answers
228 views

How to find the “foreign key” field name on a nested TClientDataSet?

Given a nested TClientDataSet, how could I find the link field name on the detail TClientDataSet? I'm copying data from one TClientDataSet to another (record by record) and I would like to ...
3
votes
4answers
736 views

Trapping errors in TClientDataSet.CommandText

I have a TClientDataSet connected to a TDataSetProvider, which in turn is connected to a TAdsQuery. I set the SQL command and then open the ClientDataset something like this: try CDS.CommandText := ...
3
votes
5answers
337 views

Where should the TClientDataset component be located?

Some background: I want to develop a desktop application, with a SQL database as storage. There is only one user at one time connected to the database. To make maintainance easier, I would like to ...
3
votes
3answers
992 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 ...
3
votes
4answers
802 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 ...
3
votes
1answer
699 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 ...
3
votes
3answers
749 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 ...
2
votes
1answer
52 views

How to retrieve information from a field that has the property Required set as false?

I have the following DBX structure in my software: TSQLDataSet -> TDataSetProvider -> TClientDataSet One of the fields from my TClientDataSet has the property Required set to false, because ...
2
votes
1answer
464 views

TClientDataSet Doesn't Release Memory

I have a DataSnap server that creates a TSQLQuery, TDataSetProvider and a TClientDataSet that are unique to a given user's session, which are used and reused to retrieve data from a database and send ...
2
votes
1answer
294 views

Delphi: How to aggregate just the ranged records in TClientDataset?

I need to make some aggregates using TClientdataset. In SQL these aggregates can be done with script like this : Select Sum(column1) from table1 where Date_Column < Date_Value Because I need ...
2
votes
4answers
661 views

Error:the filename directory name or volume label syntax is incorrect, in Delphi 7 CopyFile Function

I want to copy files from one folder to another using CopyFile function. The source files paths are stored in a ClientDataSet called "itemsDB". The code is : Var Source, Dest : String; Begin ...
2
votes
2answers
959 views

to track the modified rows and manually update from the TClientDataSet's Delta

Is there any way to manually track the changes done to a clientdataset's delta and update the changes manually on to then db. i have dynamically created a clientdataset and with out a provider i am ...
2
votes
2answers
720 views

Delphi Clientdataset Lookup/Aggregate

I need a little help with ClientDatasets in Delphi. What I want to achieve is a grid showing customers, where one of the columns shows the number of orders for each customer. I put a ClientDataset on ...
2
votes
3answers
1k views

DataSetProvider - DataSet to ClientDataSet

EDIT: It seems as if the DataSetProvider doesn't have the functionality I need for this project, so I'll be implementing a custom class for loading the data into the ClientDataSet. I am trying to ...
2
votes
2answers
474 views

Is there an implementation for Delphi:TClientDataSet in C++ for MVS?

I want to migrate from Embarcadero Delphi to Visual Studio, but without a TClientDataset class it is very difficult. This class represents an in-memory dataset. I can't find any class like ...
1
vote
2answers
61 views

Delphi won't let me insert rows with missing columns, but with triggers and generators for those fields

The problem is simple: I have triggers and generators in my Firebird 2.1.4 database to make a column auto increment on each insert. The architecture of the system is as follows: TSQLConnection > ...
1
vote
2answers
126 views

Delphi TClientDataSet, maximum number of fields per index

I have a simple Delphi (2007) procedure that given a TDataSet and a (sub)list of fields returns a new TClientDataSet with the distinct values from the given TDataSet. This works quite well. In my ...
1
vote
2answers
196 views

Delphi 2006 TClientDataSet index issue

I use a ClientDataSet with a DataSetProvider linked to a local DataSet. When I want to edit the data in the DataSet I open the ClientDataSet and add some indexes to it. After I'm done editing the data ...
1
vote
1answer
284 views

Delphi TClientDataSet “Trying to modify read-only field” error in SQL Server 2008, OK in 2000

Embarcadero® Delphi® 2010 Version 14.0.3593.25826 We are attempting to move a database from SQL Server 2000 to SQL Server 2008. I have a TClientDataSet that is loaded with a SELECT that includes a ...
1
vote
1answer
225 views

Number column in oracle with ftBCD datatype parameter in ADO occurs “Unspecified error” (Oracle Provider for OleDB)

I have programing a delphi with ADO + DataSetProvider + ClientDataSet. In ApplyUpdates of the ClientDataSet, this generate the ADOcommand with parameters based in fields datatypes. When a parameter ...
1
vote
0answers
267 views

Delphi: ResolveToDataset issue

I am using a TClientDataset with the following options for the provider: ResolveToDataSet = True Options = [poPropogateChanges, poUseQuoteChar] UpdateMode = upWhereKeyOnly AfterUpdateRecord = ...
1
vote
2answers
302 views

How is it possible to manually execute the “OnCalcFields” event?

Say that I temporarily want to disable the OnCalcFields event (eg. by setting cdsCalcFields := nil) during a time-consuming operation on a TClientDataSet. How can I tell the TClientDataSet to perform ...
1
vote
1answer
332 views

TClientDataSet faulted with message

got a small situation here, I haven't used TClientDataSet until recently(it requires midas.dll) so now I'm facing a very awkward error, not very descriptive: Debugger Fault Notification Project ...
1
vote
1answer
348 views

How to read a .cds database (TClientDataSet) with .Net

I have an old databasefile from an application written in Delphi. My task is to extract the data, and move it to an SQL-Database. I know it is in .cds format which uses the TClientDataSet-Class from ...
1
vote
1answer
636 views

Reading and writing into the XML file

I need to work on XML files using Delphi. I want to present the xml data in a DBGrid to the user and save the changes done by user in the XML file. For example in the below xml (which was presented ...
1
vote
2answers
501 views

Handling update errors in multiple records in the TClientDataset's ReconcileError method

I'm trying to use the ReconcileError event to allow the user to correct the data after an update error which occurred in a specific record among others. Example: I have a dataset with one field and ...
1
vote
3answers
691 views

sending files with TClientDataSets

How do i send files using TClientDataSet? i am using Delphi2010 thanks vladimir. My appologies for the confusion, my intention is to send/tranfer pdf files from one TCLientDataSet to Onother... ...
1
vote
3answers
492 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 ...
1
vote
2answers
325 views

Nesting datasets with TClientdatasets in more than two levels?

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 ...
1
vote
4answers
949 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 ...
1
vote
4answers
968 views

Invalid parameter error with TClientdataset

What is the reason for getting an 'invalid parameter error' when calling the CreateDataSet method in a TClientDataSet component. What causes this error.
1
vote
2answers
1k views

The 'invalid field type' error with TClientDataSets I don't understand

I use nested database stuctures with TClientDataSets. I'm new to programming so my lingo is ten-to-one wrong. My problem is as follows: I defined my database stucture and all the fields of the ...
0
votes
1answer
59 views

Primary Key on Local TClientDataSet using Briefcase Model

When a DataSnap Client app connects to a DataSnap Server's Remote Data Module and uses a TDataSetProvider + TClientDataSet, it caches a db table (or view) local to the client app. The user can make ...
0
votes
1answer
129 views

Delphi TClientDataSet Locate problems

I'm using Delphi7, MS Vista and Devart's dbExpress drivers (version 4.70). I drop a TSQLConnection, a TSQLTable (tabA), a TDataSetProvider, a TClientDataSet(cdsA), a DataSource and a DBGrid. I made ...

1 2