Tagged Questions
tdataset is the base class for all dataset components. Defined in the DB.pas unit, it represents data in rows and columns.
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
451 views
Database application using MVC paradigm
In classic Delphi database application we have a form, a set of data-aware visual controls connected to TDataSets via TDataSources. If one wants to design database application using MVC model, where ...
3
votes
4answers
181 views
Embed a TDataSet in a Form at Design Time
I am looking for a way to provide a ListSource to a TDBLookupComboBox in delphi without having an actual table on the database server to draw that list from. The DataField for the Combo Box is a 1 ...
2
votes
1answer
267 views
Delphi - How to free Memory from a TDataSet?
D2010, Win7 64bit.
Hello,
I have a buttonClick event with needs to process a TDataSet opened in another routine...
GetDBGenericData.
The function GetDBGenericData returns a TDataSet. This routine ...
2
votes
2answers
115 views
How use TDataset and Dll with Delphi
I'd like create a dll to import data from a file (different format, for example csv, txt, xls, ...). My idea is this: the dll load the data with her "engine" then send this data to my application so ...
2
votes
4answers
419 views
How do I declare a TField as nullable?
I'm setting up an ADO-based client dataset, and when I try to insert a null value into a TIntegerField, on Post I get Project raised exception class EDatabaseError with message 'Non-nullable column ...
2
votes
1answer
2k views
Delphi: Canceling a TDataSet.Post in an OnBeforePost Event
On our main data entry screen, we have an OK/Cancel dialog in the OnBeforePost event.
OK lets things take their course
Cancel right now does a Dataset.Cancel;
Which does what it's meant to, roll ...
1
vote
2answers
261 views
How do I determine when a record is inserted in a TDataSet?
I am writing a grid control that will display the contents of either a TDataSet or a TObjectList. When you only need to support TDataSet, things are quite simple:
Link to the dataset via a TDataLink ...
1
vote
4answers
998 views
Delphi, what's the quickest record access method in a TcxGrid or TDataSet
I am using Delphi 2007 and the TcxGrid to show the contents of a file library. The database houses information about the type of file, name, path, and extension.
In testing I am loading 1700 records ...
1
vote
1answer
249 views
Best way to swap two records in TDataset Delphi?
New to delphi and database programming in general but am curious if there is a better way to swap records in a TDataset? I have read through some help and cant find any obvious methods. Currently I ...
1
vote
3answers
1k views
Check at TDataSet row against a filter string
I am using a DevExpress TdxMemData in memory TDataSet descendant. While it has Filtered: Boolean and Filter: String properties, it doesn't appear to actually do anything with them automatically, ...
0
votes
3answers
107 views
TDataset --> Pointer to rows cols matrix?
I am writing a windows application in Lazarus/FreePascal (like Delphi). I have a TDataset object that is populated by 5000 rows, 2 columns of numerical values.
I need to pass this data to a C function ...
0
votes
2answers
107 views
Updateing dataset
Lets say I have 2 datasets: A and B, that have the same columns. I want to get the 'distance path' - minimal operations needed to be done, to change datasets A to B.
I can assume, that A and B ...
0
votes
3answers
304 views
Return no records if FIndKey results in False?
Using TDataSet.FindKey you can locate records. When it results in True the datasets cursor will be positioned on the found record. When it results in False the cursor is not moved. This results in the ...