Download presentation
Presentation is loading. Please wait.
1
Database Management Systems 1 Oracle Programming
2
Database Management Systems 2 architecture v
3
Database Management Systems 3 JDBC (Java Database Connectivity ) v JDBC enables programmers to use SQL queries from within java programs to access databases. v JDBC provides transparent access to relational databases from different vendors.
4
Database Management Systems 4 JDBC
5
Database Management Systems 5 JDBC steps v Create the database in your dbms v Register the database as a data source v Import java.sql.* at the beginning of your java file. v Connect to a JDBC source –Connection con = DriverManager.getConnection(“jdbc:oracle:thin:@cci- ora02.uncc.edu:1521:class”,”user”,”passwd”) v Create an SQL statement –Statement stmt = con.createStatement(); – stmt.executeUpdate("INSERT INTO sailor VALUES(22,'dustin',7,45.0)");
6
Database Management Systems 6 JDBC Step v Execute the statement –ResultSet rs = stmt.executeQuery(“Select * from …”) v Parse the result – rs.next(), rs.getFloat –ResultSetMetaData contains the information about column v Close the statement and connection – stmt.close() – con.close
7
Database Management Systems 7 Useful resources v JDBC tutorial http://java.sun.com/docs/books/tutorial/jd bc/index.html http://java.sun.com/docs/books/tutorial/jd bc/index.html v UNCC COIT https://cci-wiki01.uncc.edu/servlets v SampleJDBC.java on the class webpage
8
Database Management Systems 8 Java Servlets v Web servers understand requests for pages in http and return their response in HTML format v 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). v Java servlets are programs that extend the functionality of a web server and useful for building dynamic web pages on the fly.
9
Database Management Systems 9 Java Servlet Advantage v Works as a lightweight thread directly with the JVM rather than create a new process v Load once to memory and used by all threads v Share data among each other
10
Database Management Systems 10 How to run servlets v Your machine, Java servlet development kit(JSDK) v COIT –consult the webpage https://cci-wiki01.uncc.edu/servlets
11
Database Management Systems 11 Examples v HelloWorld –http://coit-servlet02.uncc.edu:8080/wwang22/HelloWorldhttp://coit-servlet02.uncc.edu:8080/wwang22/HelloWorld –HelloWorld.java on the class webpage v More examples –DBServlet –http://coit-servlet02.uncc.edu:8080/wwang22/DBServlet.htmlhttp://coit-servlet02.uncc.edu:8080/wwang22/DBServlet.html –DBServlet.java on the class webpage
12
Database Management Systems 12 JDBC and Servlet v Summary: v 1. Download PUTTY and WinSCP v 2. Download HelloWorld, SampleJDBC and DBServlet source code v 3. Modify them and upload to your own space v 4. Compile and run it
13
Database Management Systems 13 Some links v https://cci-wiki01.uncc.edu/servlets https://cci-wiki01.uncc.edu/servlets v JDBC-Servlet.doc on the class webpage
14
Database Management Systems 14 Summary v 3-tire architecture v APIs such as JDBC and ODBC introduce a layer of abstraction between application and DBMS v Choose your language from JSP, Servlet, ASP, VC++, VB.
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.