Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
860 views

Delphi TQuery save to csv file

I want to export content of a TQuery to a CSV file without using a 3d part component(Delphi 7). From my knowledge this can not be accomplished with Delphi standard components. My solution was to save ...
3
votes
8answers
3k views

delphi “Invalid use of keyword” in TQuery

I'm trying to populate a TDBGrid with the results of the following TQuery against the file Journal.db: select * from Journal where Journal.where = "RainPump" I've tried both Journal."Where" and ...
3
votes
4answers
2k views

Delphi: Paradox DB Field Name Issue (Spaces in field name)

I have a paradox table from a legacy system I need to run a single query on. The field names have spaces in them - i.e. "Street 1". When I try and formulate a query in delphi for only the "Street 1" ...
2
votes
4answers
196 views

Query optimization in Delphi 4

In Delphi 4, we have one SELECT query which is fetching 3 Text type fields along with other required fields at a time using a TQuery component. There are more than 1,000 records (which might increase ...
1
vote
2answers
147 views

Delphi - Using different TTable and TQuery as one object

Delphi 2010, Win7 - 64 I am writing an app which involves connecting to different databases. I use two different vendors for database access. I use AnyDAC, by DA-Soft, which allows me to connect to ...
1
vote
3answers
309 views

How to extract a set of records with a specific field from a Delphi in-memory data table

I've an in-memory table that I've populated with data from a custom-format file. I'd like to use this as a repository for the data without duplicating it elsewhere. Each record has a special tag field ...
0
votes
1answer
366 views

Help with Parameterized Query (using Delphi 7 and BDE)

Can someone help me and explain to my why this code crashes on the ExecSQL statement? function UpdateLastBankResponsesId(ADatabase: TDatabase; AValue: Integer): String; var AQuery2: TQuery; ...
0
votes
6answers
596 views

Delphi: TAdoQuery Memory Leak?

I'm developing as small diabetes program using Delphi 5 and ADO. I do a little query like this: function GetLowestGlucoseLevel(StartDate:string;EndDate:string): Integer; var Q:TADOQuery; begin ...
0
votes
2answers
214 views

Need to create tql queries

I need to create TQL queries to query out sets of data from the UCMDB. I am having 2 problems: 1) How can I find relationships which exists between CIs ( i do not have administrative privileges so ...
0
votes
2answers
99 views

prob. with tquery.requestlive

Do anyone know how to request a "live result set" in MySql when query has offset(eg: select * from table limit 10 offset 20;). it is throughing an error like 'invalid use of keyword' . Thanks, ...