Subject | Re: [IB-Java] prepareCall problem |
---|---|
Author | David Jencks |
Post date | 2001-10-18T15:40:18Z |
I never got the {call...} syntax to work with ic. You might try the
firebird syntax plain, I probably don't remember it exactly right,
something like
con.prepareCall("execute procedure GET_NOTIZID");
You might also try removing the apparent input param "?"
Hope this helps
david jencks
firebird syntax plain, I probably don't remember it exactly right,
something like
con.prepareCall("execute procedure GET_NOTIZID");
You might also try removing the apparent input param "?"
Hope this helps
david jencks
On 2001.10.18 04:46:29 -0400 info@... wrote:
> Hi,
> I´m trying to call a stored procedure GET_NOTIZID which has no input
> parame=
> ters and one output parameter of type INTEGER:
>
> CREATE PROCEDURE GET_NOTIZID returns (ID Integer)
> AS
> BEGIN
> ID = gen_id(NOTIZ_GEN, 0);
> SUSPEND;
> END
>
> It works fine in isql, but when i try calling it in a java-app. using:
> CallableStatement cstmt = oSQLConn.prepareCall( "{call GET_NOTIZID(?)}"
> );
> cstmt.registerOutParameter( 1, Types.INTEGER );
> ResultSet rs = cstmt.executeQuery();
> rs.next();
> ret = rs.getInt( 1 );
>
> I get the following error-message:
>
> [interclient][interbase] Dynamic SQL Error
> parameter mismatch for procedure GET_NOTIZID
>
> interbase.interclient.SQLException: [interclient][interbase] Dynamic SQL
> Er=
> ror
> parameter mismatch for procedure GET_NOTIZID
>
> Anybody got any an idea what i´m doing wrong?
> TIA.
> Mark
>
>
>
> To unsubscribe from this group, send an email to:
> IB-Java-unsubscribe@egroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
>