× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I'm not precisely sure what you're looking for, but... Here's the prototype that I use for SQLError:

D SQLError PR extproc('SQLError')
D like(SQLRETURN)
D henv like(SQLHENV) value
D hdbc like(SQLHDBC) value
D hstmt like(SQLHSTMT) value
D szSqlState 6A
D pfNativeErr like(SQLINTEGER)
D szErrorMsg 513A options(*varsize)
D cbErrMsgMax like(SQLSMALLINT) value
D pcbErrorMsg like(SQLSMALLINT)

Here's a link to the page of the Information Center that describes the API:
http://publib.boulder.ibm.com/infocenter/iseries/v5r4/topic/cli/rzadpfnerror.htm

Since you're trying to get error info on an SQLConnect, you won't have a statement handle, so supply the constant SQL_NULL_HSTMT for the 3rd parameter.

If you like, you can get my entire RPG copybook for SQL CLI from the following link:
http://www.pentontech.com/IBMContent/Documents/article/53024_153_ProcWithParm.zip




JLong@xxxxxxxxxx wrote:
Now that my teeth are pretty well ground flat... Scott. Can you or someone else assist me in how to get SQLError() to execute. Not asking for much but an example in some form of RPG would be most excellent.

Thanks in advance
Jack Long
CBK Ltd.





JLong@xxxxxxxxxx 02/07/2008 02:07 PM
Please respond to
RPG programming on the AS400 / iSeries <rpg400-l@xxxxxxxxxxxx>


To
RPG programming on the AS400 / iSeries <rpg400-l@xxxxxxxxxxxx>
cc

Subject
Re: SQLCLI program calling another SQLCLI program.






Scott wrote:
When an SQL CLI procedure fails, you need to call SQLError() to determine why it failed. (-1 only means "SQL_ERROR", and doesn't tell you anything more than "an error occurred".) Call SQLError to get an SQLState or SQLCode that will tell you which error occurred.


Thanks Scott

I just pieced together a couple of things from a day and a half research through everything Google and the manual.... Changes made were to have ProgramB in ACTGRP(*CALLER) and pass henv and hdbc from ProgramA to ProgramB and bypass the connection and disconnect code. Going to go back
and see what SQL_ERROR tells me before gritting my teeth and leaving it this way.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.