the_auracle Posted July 15, 2006 Posted July 15, 2006 hey i have been facing problem in passing parameters to an oracle stored procedure from c#.net. i think the connection is alright. kindly specify how to send a string and mention any changes that have to be done in the basic code of the procedure. kindly post the code also.... thanks in advance.... the procedure runs fine if it is executed from oracle directly.... comm.Parameters.Add("isno",Convert.ToInt16(txtserial.Text)); comm.Parameters[0].Direction = ParameterDirection.Input; comm.Parameters.Add("iname", txtname.Text ); comm.Parameters[1].Direction = ParameterDirection.Input; this is how i tried to pass an integer value and an string to oracle.... Quote
Administrators PlausiblyDamp Posted July 15, 2006 Administrators Posted July 15, 2006 http://www.xtremedotnettalk.com/showthread.php?t=87690 may be worth a look. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.