1 / 15

Oracle Programming

Oracle Programming. Instructor: Xintao Wu. architecture. JDBC. JDBC (Java Database Connectivity ). JDBC enables programmers to use SQL queries from within java programs to access databases. JDBC provides transparent access to relational databases from different vendors. JDBC steps.

roxanne
Télécharger la présentation

Oracle Programming

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Oracle Programming Instructor: Xintao Wu Xintao Wu

  2. architecture Xintao Wu

  3. JDBC Xintao Wu

  4. JDBC (Java Database Connectivity ) • JDBC enables programmers to use SQL queries from within java programs to access databases. • JDBC provides transparent access to relational databases from different vendors. Xintao Wu

  5. JDBC steps • Create the database in your dbms • Register the database as a data source • Import java.sql.* at the beginning of your java file. • Connect to a JDBC source • Connection con = DriverManager.getConnection(“jdbc:oracle:thin:@coit-ora01:1521:class”,”user”,”passwd”) • Create an SQL statement • Statement stmt = con.createStatement(); • stmt.executeUpdate("INSERT INTO sailor VALUES(22,'dustin',7,45.0)"); Xintao Wu

  6. JDBC Step • Execute the statement • ResultSet rs = stmt.executeQuery(“Select * from …”) • Parse the result • rs.next(), rs.getFloat • ResultSetMetaData contains the information about column • Close the statement and connection • stmt.close() • con.close Xintao Wu

  7. Useful resources • JDBC tutorial http://java.sun.com/docs/books/tutorial/jdbc/index.html • UNCC COIT http://coit-servlet01.uncc.edu:8080/support/? • Example http://www.cs.uncc.edu/~xwu/WEB-INF/classes/SampleJDBC.java Xintao Wu

  8. Java Servlets • Web servers understand requests for pages in http and return their response in HTML format • Static html vs. dynamic html • The webpage is based on data submitted by the user • The data changes frequently (a weather-report) • Web pages uses information from a database(stock) • Maintain separate data about each client for personalization purposes(cookies). • Java servlets are programs that extend the functionality of a web server and useful for building dynamic web pages on the fly. Xintao Wu

  9. Java Servlet Advantage • Works as a lightweight thread directly with the JVM rather than create a new process • Load once to memory and used by all threads • Share data among each other Xintao Wu

  10. How to run servlets • Your machine, Java servlet development kit(JSDK) • COIT • consult the webpage http://coit-servlet01.uncc.edu:8080/support/Examples.html • Consult TA Xintao Wu

  11. Examples • HelloWorld • http://coit-servlet01.uncc.edu:8080/xwu/servlet/HelloWorld • http://www.cs.uncc.edu/~xwu/WEB-INF/classes/HelloWorld.java • More examples • http://coit-servlet01.uncc.edu:8080/support/Examples.html • DBServlet • http://coit-servlet01.uncc.edu:8080/xwu/DBServlet.html • http://www.cs.uncc.edu/~xwu/WEB-INF/classes/DBServlet.java Xintao Wu

  12. JDBC and Servlet • Summary: • 1. Download PUTTY and WinSCP • 2. Download HelloWorld, SampleJDBC and DBServlet source code • 3. Modify them and upload to your own space • 4. Compile and run it • http://coit-servlet01.uncc.edu:8080/xwu/ojdbc14.jar • export CLASSPATH=$CLASSPATH:~/public_html/WEB-INF/classes/ojdbc14.jar Xintao Wu

  13. Some links • http://coit-servlet01.uncc.edu:8080/support • http://www.chiark.greenend.org.uk/~sgtatham/putty Xintao Wu

  14. Some files you need • http://www.cs.uncc.edu/~xwu/5160/ojdbc14.jar • http://www.cs.uncc.edu/~xwu/5160/servlet-api.jar • http://www.cs.uncc.edu/~xwu/5160/.bashrc • Visit the following to set up JDBC and servlet enviorment Note: We don’t need bashrc file for the new system Xintao Wu

  15. Summary • 3-tire architecture • APIs such as JDBC and ODBC introduce a layer of abstraction between application and DBMS • Choose your language from JSP, Servlet, ASP, VC++, VB. Xintao Wu

More Related