devxlogo

Informix Stored Procedures to VB

Informix Stored Procedures to VB

Question:
I am returning a resultset from an Informix Stored Procedure to VB6 via ODBC and ADO. Is there any way of returning the field names? At this point I get the resultset, but the name property of the fields are blank.

Answer:
I’m not an ODBC programmer, but I’m pretty sure that the ODBC standard includes a way to get the field names (may be referred to as “headers”) back from the database. You can probably get to this from VB.

On the other hand, since you’re trying to get these field names from a stored procedure, you probably don’t have a simple table to select from. In this case you may try something from SQL along the lines of:

SELECT fname as firstname from TABLENAME

Depending upon how you’re building your stored procedures, the above syntax may be helpful.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist