Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Capture return value from a SP
Message
De
13/12/2005 12:01:12
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
 
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Versions des environnements
Environment:
C# 1.1
Database:
MS SQL Server
Divers
Thread ID:
01077504
Message ID:
01077534
Vues:
29
>I am having some problems capturing the return value from a SP after I excecute it. Here is the code I use:
>
>
>SqlConnection oCon = new SqlConnection(this.ConnectionString);
>SqlCommand cmd = new SqlCommand("mySP", oCon);
>cmd.CommandType = CommandType.StoredProcedure;
>SqlParameter oParam = cmd.Parameters.Add("@Id", SqlDbType.UniqueIdentifier);
>oParam.Value = myID;
>oCon.Open();
>cmd.ExecuteNonQuery();
>oCon.Close();
>
>
>I have been raising exceptions within SPs to notify the client that something was not cosher, but I would also like to know how to evaluate the return value from a SP.
>
>Let us assume that for this example the SP looks something like this:
>
>UPDATE myTable SET Name = 'Einar' WHERE Id = @Id
>RETURN @@ERROR
>
Einar,
I don't know if I posted it also on .Net section, search VFP section for ADO and return parameter. Same applies to .Net I think. In .Net it should be easier since a return parameter to return a value recordset needs to be closed.
BTW: You specify commandtext and commandtype to be a stored procedure.
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform