MySQL Forums
Forum List  »  Source, Builds, Binaries

Stored procedure
Posted by: sergei sergei
Date: February 16, 2006 09:52PM

Hello everyone

StoredProcedures.cs
=========================== 1 =================================
public string Prepare(MySqlCommand cmd)
...is...
else if (p.Direction == ParameterDirection.InputOutput)
setStr += "set " + vName + "=" + pName + ";";
... may be need like this? ...
else if ((p.Direction == ParameterDirection.InputOutput)|(p.Direction == ParameterDirection.Output))
setStr += "set " + vName + "=" + pName + ";";
==============================================================

Options: ReplyQuote


Subject
Views
Written By
Posted
Stored procedure
2752
February 16, 2006 09:52PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.