hi guys please help me m trying to call a stored procedure from a oracle database below is my code
string
sSql =
sel.CommandType =
sel.Parameters.Add(
g_conn.Open();
a.SelectCommand = sel;
da.Fill(ds);
o_dt = ds.Tables[0];
g_conn.Close();
all I need to know is if there is a way of doing this in a better way without using both oracle command and DataAdapter(like in ms sql sever where you just use dataadapter only),
Thanks