Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
7answers
403 views

Delphi Performance: Reading all values under a field in a dataset

We're trying to find out some performance fixes reading from a TADOQuery. Currently, we loop through the records using 'while not Q.eof do begin ... Q.next method. For each, we read ID and Value of ...
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 ...
3
votes
3answers
480 views

DELPHI ADOQuery - detect if dataset will be returned

I'm struggling with correct procedure for executing SQL query. Basically, I have text field where user can enter SQL code and program will execute it. Unfortunately, I don't know if the dataset will ...
2
votes
3answers
169 views

What are the “Missing SQL property” here?

When trying to execute the code: function TDBClass.addNome(nome: String): String; var rsnome: TADOQuery; begin rsnome := TADOQuery.Create(nil); rsnome.Connection := connection; rsnome.Open(); ...
2
votes
1answer
229 views

How do I use TADOQuery.Parameters with integer parameter types that have to be put in two or more places in a query?

I have a complex query that contains more than one place where the same primary key value must be substituted. It looks like this: select Foo.Id, Foo.BearBaitId, Foo.LinkType, ...
2
votes
1answer
255 views

TADOQuery SQL.add() submitting/preparing the sql

Overview: I have written an application that allows a user to define a query, submit it to a server and view the results. The software can run on DB2 or MySQL. Problem: We've had issues in the DB2 ...
2
votes
2answers
554 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 ...
1
vote
1answer
86 views

Is there a way to know if TAdoQuery in Edit state was changed?

Is there a way to know if TAdoQuery in Edit state was changed? Assuming we forced it into edit state, and we want to ask the user if he wants to keep the changes.
1
vote
2answers
263 views

How do you use NOLOCK with TADOQuery and TADOTable?

I have the SQL text "SELECT * FROM TABLE1 WITH (NOLOCK)". Two questions: How do I make my TADOQuery use the NOLOCK hint without having to include that in the SQL text? I have literally thousands of ...
1
vote
1answer
148 views

is there a way to update or insert TADOQuery from TADOQuery1

i have nou 2 query´s TADOQuery and TADOQuery1 and i wouth like to update TADOQuery record´s from TADOQuery1 via code is it possible ?? they have the same field´s Thank´s Ml
1
vote
2answers
402 views

Delphi TADOQuery SaveToFile problem

I have written an application that allows a user to create and run a query, then save the report to file. They can load the report from file at a later date and view on screen. I use a TADOQuery ...
0
votes
0answers
108 views

Delphi TADOQuery component events to update a grid

I've done a lot of SQL programming as well as a some custom grids, and now I'm making a universal form containing a grid and search options for any query and set of fields thrown at it. I need to make ...
0
votes
3answers
216 views

parameters in ADOQuery

I am using ADOQuery in Delphi 7 and Oracle. I am getting error while passing parameters to ADOQuery. I have used following line. Please help me to identify error. ADOQuery.Sql.text:= 'select * from ...
0
votes
0answers
63 views

Filtering a TDBGrid C++Builder 2009 \ Delphi 2009

Hi I have a problem with a filter on a dataset. ( (UnitName like 'd%') or ((Unitsid = 3) or (Unitsid = 4))) is ok but ( (UnitName like 'd%') and ((Unitsid = 3) or (Unitsid = 4))) generates an ...
0
votes
0answers
195 views

dynamic TParameter in ADOQuery c++ builder

I have a problem with a query. I want to build an SQL statement dynamically. I use an ADOQuery which contains no SQL statement. At runtime, I build my SQL statement and I want to build my parameters ...
0
votes
2answers
160 views

Delphi - ADO query and FillChar generates errors

I have the following code: var wqry:TAdoQuery; ... FillChar(wSpaces,cSpacesAfter,' '); try wqry := TADOQuery.Create(nil);//here the error wqry.Connection:=... cSpacesAfter is a ...
0
votes
2answers
296 views

Working with TADOQuery in thread

I'm writing the application, which connects to the DB and repetitively (1 minute interval) reads the data from a database. It's something like RSS feed reader, but with local DB. If the data reading ...
0
votes
1answer
316 views

ADOQuery and DBNavigator

OK. I have simple Database ,DBGrid and DBNavigator . I use this code for my adoquery and view in this in my DBGrid select Count(*)As 1 , 2 3 from Table1 Group by 1, 2 The problem is that if i have ...
0
votes
1answer
501 views

adoQuery Filter

Could you please provide me with a simple example of using the Filter Property of ADOQuery in Delphi 7? Thanks.
0
votes
2answers
359 views

2 TADOQUERY master and Detail tablefilter insert

How can i work with 2 Tadoquery and work like a Tadoquery (master) Tadotable(detail) !! var tempvar : Variant; begin Edit1.text:=Ano.value; Begin with ...
0
votes
3answers
503 views

TADOQuery filter and an expression always true

I am trying to filter some records from a TADOQuery. I set the filtered property to true and when I set the filter to field='value', all works fine. I would like to dynamically build this filter by ...
-1
votes
1answer
272 views

SQL query updates then revertes changes

I'm currently baffled by the one problem. I can insert and delete records from my table but I can't update certain fields. It does update it temporarily before reverting changes 0.5 seconds later, I ...
-1
votes
2answers
403 views

insert to a diffrent table onNewRecord

got an ADOQuery that has OnNewRecord event. on the procedure i try to add data automaticaly to another table. the data is a few rows that are needed and handled in clientDataSet in case of ...