G
Guest
I have a SP I'm calling to talk to the Oracle Back end, I want to split up the data (columns) be returned and display them in labels and not on a grid. How can i do that?
here is the call to the sp:
cn.Parameters.Add("carCursor", OracleDbType.RefCursor, DBNull.Value, ParameterDirection.Output)
this returns,, make, model, year, engine_type
I want to display only the Make and Year in a label form.
here is the call to the sp:
cn.Parameters.Add("carCursor", OracleDbType.RefCursor, DBNull.Value, ParameterDirection.Output)
this returns,, make, model, year, engine_type
I want to display only the Make and Year in a label form.