Click here to Skip to main content
15,891,908 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have created stored procedure with input and output parameter in oracle
At Backend that is working fine when I tried to display at front end that stored procedure data is not fetching and not displaying in textbox.
I tried to resolve this by searching google and written exact logic but it is not displaying and not read the data.
SO could you please help me.
C#
cmd.Parameters.Add("app_First_name", OracleDbType.Varchar2,50,). Direction
 = ParameterDirection.Output;
while (dataReader.Read())
                        {
                            txtUFirstName.Text = dataReader["app_First_name"].ToString();
Posted
Comments
DamithSL 19-Nov-14 2:09am    
update the question with full method code
Sinisa Hajnal 19-Nov-14 2:17am    
Also show the relevant part of the stored procedure (the one where you're setting the output parameter)...
Arkadeep De 19-Nov-14 4:39am    
please share full code...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900