It's an Oracle stored proc that I have no access to.
BTW, you hit it on the head for me.
view[0][1].ToString ());
does what I am expecting it to do. Thanks!
I have a large dataset that I need to sort out (can't do it on the DB side).
DataView view = new DataView(ds.Tables[0]);
view.Sort = "PA_FIRST_NAME ASC";
This works when I iterate through the data using:
foreach (DataRowView drv in view)
{Response.Write(drv["PA_FIRST_NAME"].ToString() +...
I am trying to connect to an Oracle DB with a Servlet (in Jbuilder 2006).
I am using JDBC: Class.forName("oracle.jdbc.driver.OracleDriver");
When I have this line in my code jbuilder gives me the classnotfoundException.
I can connect just great with a standard application - it compiles just...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.