Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6015435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:50:09+00:00 2026-05-23T02:50:09+00:00

I am using Delphi 7. TQuery connected to Firebird DB. Table T1 has 3

  • 0

I am using Delphi 7. TQuery connected to Firebird DB.

Table T1 has 3 fields (A, B, and C).

To query that table, I wrote the following code:

MyQuery.SQL.Clear;
MyQuery.SQL.Add('SELECT B, C, A FROM T1'); // because that's the order I want them
MyQuery.Open;

However, when filling a string grid’s top row with FieldNames (by iterating through the Fields[] array) I don’t want to have to rely on static fieldname to column mapping, but my problem is that the order of fields in the Fields[] array doesn’t match the order of the fields in the SQL I used.

EDIT

I’m using one routine for multiple reports with different SQLs at runtime. I don’t want to rely on FieldNames at all, so I need to make the TQuery.Fields array sorted in the order of the fields appearing in the SQL in TQuery.SQL (at runtime).

My question is: how can I control the order of the Fields in MyQuery.Fields[] so that it matches the order I used in the SQL? Is there a better alternative that I should try?

EDIT

Sorry, it was just a silly bug in the end. One too many SQL.Clear!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T02:50:10+00:00Added an answer on May 23, 2026 at 2:50 am

    First of all, this:

    MyQuery.SQL.Add('SELECT B, C, A FROM T1');
    

    should be:

    MyQuery.SQL.Text := 'SELECT B, C, A FROM T1';
    

    or:

    MyQuery.SQL.Clear;
    MyQuery.SQL.Add('SELECT B, C, A FROM T1');
    

    because Add() alone appends something to the existing query in MyQuery.SQL. In that case the behavior would be provider-dependent. With some providers you simply get the first query executed and the other ones ignored, while with other providers you’d get an error. Either way it’s wrong.

    If that still doesn’t fix it, what Query are you talking about, what kind of database and what kind of grid? The behavior might be database-dependent or grid-dependent; For what it’s worth, I’ve never seen it happen before, I always got the columns in SQL order. But I’m mostly using Firebird, MsSQL, a little Oracle.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Are there any utilities that reformat Delphi code ? EDIT I am using Delphi
Using Delphi 2007 I can write the following code: interface TTestType = (ttTest1, ttTest2);
I`m using Delphi 2009 and want to operate some XML data. I heard that
When using Delphi IDE, it will silently change SQLConnection.Connected to true when populating field
(Using Delphi 5) I am attempting to open a log file using the following
I´m using Delphi 5 with SQL Server 2000 here. I have created an ADOQuery
I am using Delphi 6 Professional. I am interfacing with a DLL libraty that
I'm using Delphi and need to get the current Windows DNS server IP address
I'm using Delphi 6, and I want a database bound list box with multiselect.
I'm using Delphi 2007. How can I put a GIF/PNG image on a BitBtn

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.