Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. wittybanter

    Dataview Behavior

    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!
  2. wittybanter

    Dataview Behavior

    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() +...
  3. wittybanter

    Connecting to Oracle with a servlet error

    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...

Part and Inventory Search

Back
Top