CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2009
    Posts
    399

    How can I know the columns name for the following SELECT (programmatically) ?

    How can I retrieve programmtically the name of the columns implied into a certain SQL, for instance:

    Code:
    SELECT * FROM table1, table 2 WHERE table1.id = table2.id;

  2. #2
    VictorN's Avatar
    VictorN is online now Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: How can I know the columns name for the following SELECT (programmatically) ?

    You already got an answers in this thread.
    Victor Nijegorodov

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured