Click here to Skip to main content
16,012,223 members
Home / Discussions / C#
   

C#

 
QuestionRuning stored procedure with oracle and C# Pin
sdsdsds@hotmail.com8-Jan-07 2:52
sdsdsds@hotmail.com8-Jan-07 2:52 
AnswerRe: Runing stored procedure with oracle and C# Pin
Mircea Puiu8-Jan-07 3:22
Mircea Puiu8-Jan-07 3:22 
GeneralRe: Runing stored procedure with oracle and C# Pin
sdsdsds@hotmail.com9-Jan-07 0:58
sdsdsds@hotmail.com9-Jan-07 0:58 
GeneralRe: Runing stored procedure with oracle and C# Pin
Martin Sp.9-Jan-07 3:53
Martin Sp.9-Jan-07 3:53 
GeneralRe: Runing stored procedure with oracle and C# Pin
sdsdsds@hotmail.com10-Jan-07 1:55
sdsdsds@hotmail.com10-Jan-07 1:55 
GeneralRe: Runing stored procedure with oracle and C# Pin
Martin Sp.10-Jan-07 3:34
Martin Sp.10-Jan-07 3:34 
GeneralRe: Runing stored procedure with oracle and C# Pin
sdsdsds@hotmail.com10-Jan-07 19:36
sdsdsds@hotmail.com10-Jan-07 19:36 
GeneralRe: Runing stored procedure with oracle and C# Pin
Martin Sp.10-Jan-07 23:39
Martin Sp.10-Jan-07 23:39 
Ok, I tried it with this code and it worked here (ODP.NET 10.2, Oracle 9g):

<br />
using ( OracleConnection conn = new OracleConnection( connString ) )<br />
{<br />
  conn.Open();<br />
<br />
  OracleCommand cmd = conn.CreateCommand();<br />
  cmd.CommandType = CommandType.StoredProcedure;<br />
  cmd.CommandText = "TEST";<br />
<br />
  OracleParameter parm1 = cmd.CreateParameter();<br />
  parm1.Direction = ParameterDirection.Input;<br />
  parm1.OracleDbType = OracleDbType.Varchar2;<br />
  parm1.ParameterName = "C1";<br />
  parm1.Size = 200;<br />
  cmd.Parameters.Add( parm1 );<br />
<br />
  OracleParameter parm2 = cmd.CreateParameter();<br />
  parm2.Direction = ParameterDirection.Output;<br />
  parm2.OracleDbType = OracleDbType.Varchar2;<br />
  parm2.ParameterName = "C2";<br />
  parm2.Size = 200;<br />
  cmd.Parameters.Add( parm2 );<br />
<br />
  cmd.ExecuteNonQuery();<br />
  Console.WriteLine( parm2.Value );<br />
}<br />


HTH,
Martin
GeneralRe: Runing stored procedure with oracle and C# Pin
sdsdsds@hotmail.com14-Jan-07 19:47
sdsdsds@hotmail.com14-Jan-07 19:47 
GeneralRe: Runing stored procedure with oracle and C# Pin
Martin Sp.14-Jan-07 23:57
Martin Sp.14-Jan-07 23:57 
QuestionNew Project Dialog Pin
Rahul.RK8-Jan-07 2:04
Rahul.RK8-Jan-07 2:04 
AnswerRe: New Project Dialog Pin
Mircea Puiu8-Jan-07 3:29
Mircea Puiu8-Jan-07 3:29 
QuestionElegant way to develop a chronometer Pin
AlexB478-Jan-07 1:47
AlexB478-Jan-07 1:47 
AnswerRe: Elegant way to develop a chronometer Pin
Ravi Bhavnani8-Jan-07 2:48
professionalRavi Bhavnani8-Jan-07 2:48 
GeneralRe: Elegant way to develop a chronometer Pin
AlexB478-Jan-07 2:54
AlexB478-Jan-07 2:54 
QuestionHow to dispose a class Pin
Yustme8-Jan-07 0:14
Yustme8-Jan-07 0:14 
AnswerRe: How to dispose a class Pin
Martin#8-Jan-07 0:23
Martin#8-Jan-07 0:23 
AnswerRe: How to dispose a class Pin
Pete O'Hanlon8-Jan-07 0:30
mvePete O'Hanlon8-Jan-07 0:30 
GeneralRe: How to dispose a class Pin
Yustme8-Jan-07 0:48
Yustme8-Jan-07 0:48 
GeneralRe: How to dispose a class Pin
Guffa8-Jan-07 1:00
Guffa8-Jan-07 1:00 
GeneralRe: How to dispose a class Pin
Yustme8-Jan-07 1:03
Yustme8-Jan-07 1:03 
GeneralRe: How to dispose a class Pin
Scott Dorman8-Jan-07 17:12
professionalScott Dorman8-Jan-07 17:12 
GeneralRe: How to dispose a class Pin
Not Active8-Jan-07 2:36
mentorNot Active8-Jan-07 2:36 
GeneralRe: How to dispose a class Pin
Mircea Puiu8-Jan-07 3:39
Mircea Puiu8-Jan-07 3:39 
AnswerRe: How to dispose a class Pin
Guffa8-Jan-07 4:10
Guffa8-Jan-07 4:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.