MySQL Forums
Forum List  »  Stored Procedures

Re: Stored Procedures with VB.Net
Posted by: Charlie Ash
Date: August 14, 2005 09:16PM

I'm having the same problem and debugging through the code, it seems the new line (\n or \r\n) characters or if you omit the direction (IN or OUT) in the your paramterter list, the driver has a problem.

Try using
CREATE PROCEDURE EditJuror (IN nameOld varchar(100), IN name varchar(100), .....)



Alternatively, change the code of the driver StoredProcedure.cs - line 91 from

string[] parts = Utility.ContextSplit( paramDef.ToLower(), .....

to

string[] parts = Utility.ContextSplit( paramDef.Trim().ToLower(), .....

Options: ReplyQuote


Subject
Views
Written By
Posted
5680
August 02, 2005 11:30AM
Re: Stored Procedures with VB.Net
3163
August 14, 2005 09:16PM
2904
September 08, 2005 12:14PM


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.