Tagged Questions
The tadodataset tag has no wiki summary.
4
votes
2answers
104 views
ADODataSet deleting from joined table
I have a Delphi app where I display a list of games that have been played from a query like this:
select g.*, gt.id, gt.descr
from GAMES g
inner join game_types gt on gt.id = g.game_type
order by ...
4
votes
3answers
1k views
ADO components CommandTimeout
I have a problem with settings of the query execution timeout with TADOQuery, TADOCommand or TADODataSet (I've tried it with each one). I have a tiny application, which connects to the database and ...
2
votes
1answer
303 views
Delphi XE Unicode dealing with nchar(1) fields
I'm using a dbGo TADODataset in Delphi XE to read data from a SQL Server 2008 table. All the string fields are nvarchar or nchar.
The nvarchar fields map to TWideStringField with no problems.
The ...
2
votes
2answers
526 views
How to achieve independant cloned TADODataSet?
The scenerios is like this:
We have some SQL table. We are perfroming an SQL query on this table and we have results in TADOQuery object.
var
qryOryginal, qryClone: TADOQuery;
begin
//setup all ...
0
votes
1answer
200 views
ADODataset: how to load XML (saved beforehand in DB in ADO schema) data without temporary files?
Warning: total rewrite.
Scenario:
I loaded some data from database on a TCustomADODataset descendant. After that, I saved this data on XML temp file (using TCustomADODataset.SaveToFile) to allow ...
0
votes
4answers
866 views
“either bof or eof is true or the current record has been deleted..” error on applyupdates that contains a delete operation
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 ...