Skip to Content.
Sympa Menu

freetds - Re: [freetds] Getting stored procedure output parameters and returnvalues

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: "ZIGLIO, Frediano, VF-IT" <Frediano.Ziglio AT vodafone.com>
  • To: "FreeTDS Development Group" <freetds AT lists.ibiblio.org>
  • Subject: Re: [freetds] Getting stored procedure output parameters and returnvalues
  • Date: Wed, 11 Apr 2007 16:10:59 +0200

>
> Hi good people, I'm new in this list and new too in unixODBC.
> I'm having a problem with output parameter and return
> values of SQLServer stored procedures.
>
> I'm using FreeTDS driver but unixODBC API. So, I believe to
> be doing everything in right way, but don't work.
>
> I created a SP with an output parameter. My code do:
>
> - SQLPrepare with statement "{ call sp_myproc (?) }"
> - SQLBindParameter with
> SQL_PARAM_OUTPUT
> - SQLExecute
>
> Do not occurs errors, but the parameter is not returned.
>
> This also occurs with return values of SPs with statement
> "{ call sp_myproc (?) }" and SQLBindParameter with
> SQL_PARAM_OUTPUT.
>
> Some help is welcome...
> Thaks
>

Hi,
this is not sufficient, you have to read all data
(SQLFetch/SQLMoreResults) returned by SQLExecute cause parameters are
the last thing server returns

Frediano Ziglio





Archive powered by MHonArc 2.6.24.

Top of Page