This is a discussion on Procedures on Informix ODBC Driver within the Informix forums, part of the Database Server Software category; --> Hello, i had a Probolemn with Procedures (Functions) on Informix ODBC Driver. This Procedure works with Intersolv ODBC Driver ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello, i had a Probolemn with Procedures (Functions) on Informix ODBC Driver. This Procedure works with Intersolv ODBC Driver but not with the Informix ODBC Driver: CREATE PROCEDURE SVP_IN_XCHAR ( n_Test VARCHAR(254) ) RETURNING INTEGER; IF n_Test = 'Testwert' THEN RETURN 0; ELSE RETURN 1; END IF; END PROCEDURE; The Statement {?=CALL SVP_IN_XCHAR(?)} returns: Error: Invalid parameter type. (State:S1105, Native Code: FFFFD4B3) Can anybody help me? Thanks. |