Course Objectives. Database Applications. External applications. Course Objectives Interfacing. Mixing two worlds. Two approaches



Similar documents
SQL Programming. CS145 Lecture Notes #10. Motivation. Oracle PL/SQL. Basics. Example schema:

Real SQL Programming. Persistent Stored Modules (PSM) PL/SQL Embedded SQL

Real SQL Programming. Embedded SQL Call-Level Interface Java Database Connectivity

Database Programming. Week *Some of the slides in this lecture are created by Prof. Ian Horrocks from University of Oxford

CS 377 Database Systems SQL Programming. Li Xiong Department of Mathematics and Computer Science Emory University

CS346: Database Programming.

SQL and Java. Database Systems Lecture 19 Natasha Alechina

Chapter 13. Introduction to SQL Programming Techniques. Database Programming: Techniques and Issues. SQL Programming. Database applications

Programming Database lectures for mathema

SQL and Programming Languages. SQL in Programming Languages. Applications. Approaches

SQL/PSM. Outline. Database Application Development Oracle PL/SQL. Why Stored Procedures? Stored Procedures PL/SQL. Embedded SQL Dynamic SQL

Database Access from a Programming Language: Database Access from a Programming Language

Database Access from a Programming Language:

Real SQL Programming 1

COSC344 Database Theory and Applications. Java and SQL. Lecture 12

Chapter 9 Java and SQL. Wang Yang wyang@njnet.edu.cn

What is ODBC? Database Connectivity ODBC, JDBC and SQLJ. ODBC Architecture. More on ODBC. JDBC vs ODBC. What is JDBC?

More SQL: Assertions, Views, and Programming Techniques

Chapter 9, More SQL: Assertions, Views, and Programming Techniques

SQL and programming languages

Why Is This Important? Database Application Development. SQL in Application Code. Overview. SQL in Application Code (Contd.

The JAVA Way: JDBC and SQLJ

SQL: Programming. Introduction to Databases CompSci 316 Fall 2014

Embedded SQL. Unit 5.1. Dr Gordon Russell, Napier University

Quiz! Database Indexes. Index. Quiz! Disc and main memory. Quiz! How costly is this operation (naive solution)?

Database Application Development. Overview. SQL in Application Code. Chapter 6

Mimer SQL. Programmer s Manual. Version 8.2 Copyright 2000 Mimer Information Technology AB

Overview. Database Application Development. SQL in Application Code (Contd.) SQL in Application Code. Embedded SQL. Embedded SQL: Variables

Persistent Stored Modules (Stored Procedures) : PSM

CSC 443 Database Management Systems. The SQL Programming Language

Intro to Embedded SQL Programming for ILE RPG Developers

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today.

ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT

SQL is capable in manipulating relational data SQL is not good for many other tasks

PL/SQL Overview. Basic Structure and Syntax of PL/SQL

Java and Databases. COMP514 Distributed Information Systems. Java Database Connectivity. Standards and utilities. Java and Databases

1 SQL Data Types and Schemas

Oracle Database: SQL and PL/SQL Fundamentals

14 Triggers / Embedded SQL

Database Programming with PL/SQL: Learning Objectives

5.1 Database Schema Schema Generation in SQL

JDBC (Java / SQL Programming) CS 377: Database Systems

Oracle Database: SQL and PL/SQL Fundamentals NEW

The C Programming Language course syllabus associate level

Darshan Institute of Engineering & Technology PL_SQL

JDBC. It is connected by the Native Module of dependent form of h/w like.dll or.so. ex) OCI driver for local connection to Oracle

Moving from CS 61A Scheme to CS 61B Java

An Introduction to PL/SQL. Mehdi Azarmi

Embedded SQL programming

public class ResultSetTable implements TabelModel { ResultSet result; ResultSetMetaData metadata; int num cols;

CS/CE 2336 Computer Science II

Supplement IV.C: Tutorial for Oracle. For Introduction to Java Programming By Y. Daniel Liang

Oracle Database: SQL and PL/SQL Fundamentals

LSINF1124 Projet de programmation

Maintaining Stored Procedures in Database Application

DEVELOPING MULTITHREADED DATABASE APPLICATION USING JAVA TOOLS AND ORACLE DATABASE MANAGEMENT SYSTEM IN INTRANET ENVIRONMENT

Developing SQL and PL/SQL with JDeveloper

PL/SQL (Cont d) Let s start with the mail_order database, shown here:

Statement Level Interface. Call Level Interface. Static SQL. Status. Connections. Transactions. To connect to an SQL database, use a connect statement

Java (12 Weeks) Introduction to Java Programming Language

ERserver. DB2 Universal Database for iseries SQL Programming with Host Languages. iseries. Version 5

CS2506 Operating Systems II Lab 8, 8 th Tue/03 /2011 Java API

D61830GC30. MySQL for Developers. Summary. Introduction. Prerequisites. At Course completion After completing this course, students will be able to:

Creating PL/SQL Blocks. Copyright 2007, Oracle. All rights reserved.

Sources: On the Web: Slides will be available on:

In This Lecture. Security and Integrity. Database Security. DBMS Security Support. Privileges in SQL. Permissions and Privilege.

Oracle Database 10g: Program with PL/SQL

Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification

Migrate Topaz databases from One Server to Another

Handling Exceptions. Copyright 2006, Oracle. All rights reserved. Oracle Database 10g: PL/SQL Fundamentals 8-1

A Brief Introduction to MySQL

Oracle SQL. Course Summary. Duration. Objectives

CSE 530A Database Management Systems. Introduction. Washington University Fall 2013

In This Lecture. SQL Data Definition SQL SQL. Notes. Non-Procedural Programming. Database Systems Lecture 5 Natasha Alechina

Database programming made easier Master thesis of Roland Balk

Database Access via Programming Languages

Object Oriented Design with UML and Java. PART XVIII: Database Technology

How I hacked PacketStorm ( )

Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff

MapReduce. MapReduce and SQL Injections. CS 3200 Final Lecture. Introduction. MapReduce. Programming Model. Example

Guide to SQL Programming: SQL:1999 and Oracle Rdb V7.1

Oracle 11g PL/SQL training

The release notes provide details of enhancements and features in Cloudera ODBC Driver for Impala , as well as the version history.

Oracle For Beginners Page : 1

Package sjdbc. R topics documented: February 20, 2015

When an exception occur a message which explains its cause is received. PL/SQL Exception message consists of three parts.

Triggers & Packages. {INSERT [OR] UPDATE [OR] DELETE}: This specifies the DML operation.

Week 5: Embedded SQL. Embedded SQL 4. Application Program. Interactive vs. Non-Interactive SQL. Update Statements

Databases 2011 The Relational Model and SQL

PL/SQL. Database Procedural Programming PL/SQL and Embedded SQL. Procedures and Functions

Applets, RMI, JDBC Exam Review

Java Application Developer Certificate Program Competencies

1 Stored Procedures in PL/SQL 2 PL/SQL. 2.1 Variables. 2.2 PL/SQL Program Blocks

Creating Customized Oracle Forms

Oracle Database: Develop PL/SQL Program Units

Instant SQL Programming

Transcription:

Course Objectives Database Applications Design Construction SQL/PSM Embedded SQL JDBC Applications Usage Course Objectives Interfacing When the course is through, you should Know how to connect to and use a database from external applications. using JDBC External applications Normally, databases are not manipulated through a generic SQL interpreter (like isql*plus). Rather they are used as a building block in larger applications. SQL is not well suited for building fullscale applications we need more computational power! Control structures, ordinary arithmetic, input/output, etc. Mixing two worlds Mixing SQL with ordinary programming constructs is not immediately straightforward. The impedance mismatch problem differing data models SQL uses the relational data model. Ordinary imperative languages cannot easily model sets and relations. Various approaches to mixing SQL and programming solve this problem more or less gracefully. Two approaches We have SQL for manipulating the database. To be able to write ordinary applications that use SQL, we can either Extend SQL with ordinary programming language constructs. SQL/PSM, PL/SQL Extend an ordinary programming language to support database operations through SQL. Embedded SQL, SQL/CLI (ODBC), JDBC, 1

SQL/PSM PSM = persistent, stored modules Standardized extension of SQL that allows us to store procedures and functions as database schema elements. Mixes SQL with conventional statements (if, while, etc.) to let us do things that we couldn t do in SQL alone. PL/SQL is Oracle-specific, and very similar to PSM (only minor differences). Basic PSM structure To create a procedure: CREATE PROCEDURE name ( parameter list ) local declarations body; To create a function: CREATE FUNCTION name ( parameter list ) RETURNS type local declarations body; Example: CREATE PROCEDURE AddDBLecture ( IN day VARCHAR(9), IN hour INT, IN room VARCHAR(30) ) INSERT INTO Lectures VALUES ( TDA356, 2, day, hour, room); Used like a statement: CALL AddDBLecture( Monday, 13, VR ); Parameters Unlike the usual name-type pairs in languages like C, PSM uses mode-nametype triples, where mode can be: IN: procedure uses the value but does not change it. OUT: procedure changes the value but does not read it. INOUT: procedure both uses and changes the value. Procedure body The body can consist of any PSM statement, including SQL statements (INSERT, UPDATE, DELETE). setting the values of variables (SET). calling other procedures (CALL) More complex example: CREATE FUNCTION RateCourse ( IN c CHAR(6)) RETURNS CHAR(10) DECLARE totalnrst INTEGER; DECLARE used to BEGIN declare local variables. SET totalnrst = (SELECT SUM(nrStudents) Number of students reading course c over FROM GivenCourses the whole year. WHERE course = c); IF totalnrst < 50 THEN RETURN unpopular ELSEIF totalnrst < 150 THEN RETURN average ELSE RETURN popular END IF; END; Used whenever we can use a value: BEGIN and END used to group statements (cf. { in e.g. Java) SELECT code, RateCourse(code) FROM Courses; 2

Setting values of variables Two ways of assigning values to variables: SET works like ordinary assignment: SET totalnrst = (SELECT SUM(nrStudents) FROM GivenCourses WHERE course = c); We can also assign values as part of a query using SELECT INTO: SELECT SUM(nrStudents), AVG(nrStudents) INTO totalnrst, avgnrst FROM GivenCourses Using SELECT INTO we WHERE course = c; can assign multiple values at the same time, if the result of the query is a tuple. Control Flow in SQL/PSM SQL/PSM has conditionals and loops like an imperative programming language: Conditional: IF THEN ELSEIF ELSE END IF; Loops: WHILE DO END WHILE; REPEAT UNTIL END REPEAT; LOOP END LOOP; LOOP works like while (true) Loops can be named by prepending a name and a colon to the loop. Exiting can then be done explicitly: loop1: LOOP LEAVE loop1; END LOOP; Returning values The keyword RETURN sets the return value of a function. Unlike e.g. Java, RETURN does not terminate the execution of the function. Example: CREATE FUNCTION ToRating (IN nrst INT) RETURNS CHAR(10) BEGIN IF nrst < 50 THEN RETURN unpopular END IF; RETURN popular ; END; Returning the value doesn t happen until END, so the result will always be popular. Exceptions in SQL/PSM SQL/PSM defines a magical variable SQLSTATE containing a 5-digit string. Each SQL operation returns a status code into this variable, thus indicating if something goes wrong. Example: 00000 = OK 02000 = No tuple found Handling exceptions We can declare condition indicators for when something goes wrong (or right): DECLARE NotFound CONDITION FOR SQLSTATE 02000 ; These can be used as ordinary tests, or using exception handlers: IF NotFound RETURN NULL END IF; DECLARE EXIT HANDLER FOR NotFound RETURN NULL; More complex example, with exceptions: CREATE FUNCTION RateCourse ( IN c CHAR(6)) RETURNS CHAR(10) DECLARE totalnrst INTEGER; DECLARE NotFound CONDITION FOR SQLSTATE 02000 ; BEGIN DECLARE EXIT HANDLER FOR NotFound RETURN NULL; SET totalnrst = If we should end up in a state (SELECT SUM(nrStudents) where Not_Found is true, i.e. FROM GivenCourses the course c doesn t exist, WHERE course = c); we return NULL. IF totalnrst < 50 THEN RETURN unpopular ELSEIF totalnrst < 150 THEN RETURN average ELSE RETURN popular END IF; END; 3

Quiz! We can use queries that return a single value, or a single tuple (using SELECT INTO), but how use queries that return more than one row? Key idea is to not return the rows themselves, but rather a pointer that can be moved from one tuple to another (cf. iterators in Java). SQL/PSM calls these cursors. Cursors Declaring DECLARE name CURSOR FOR query Initializing OPEN name Taking values from FETCH name INTO variables Ending CLOSE name Example (declaration part): CREATE PROCEDURE FixEarlyLectures ( IN thecourse CHAR(6), IN theperiod INT) DECLARE thehour INT; DECLARE theday VARCHAR(9); DECLARE theroom VARCHAR(30); DECLARE NotFound CONDITION FOR SQLSTATE 02000 ; DECLARE c CURSOR FOR (SELECT hour, weekday, room FROM Lectures WHERE course = thecourse AND period = theperiod); Used to hold values fetched by the cursor. Find all lectures of the given course. Example continued (logic part): BEGIN Check if last FETCH OPEN c; fixloop: LOOP failed to find a tuple. FETCH c INTO thehour, theday, theroom; IF NotFound THEN LEAVE fixloop END IF; IF thehour < 10 THEN IF NOT EXISTS (SELECT * FROM Lectures WHERE period = theperiod AND day = theday AND hour = 10 AND room = theroom) THEN UPDATE Lectures SET hour = 10 WHERE course = thecourse AND day = theday AND period = theperiod AND room = theroom; END IF; END IF; END LOOP; CLOSE c; END; If it does not lead to a clash, move any course What that does is scheduled it do? early to 10 o clock instead. Summary SQL/PSM Procedures, functions Parameters, local declarations Returning values Exceptions and handling Calling (CALL procedures, use functions as values) Assigning to variables SET SELECT INTO Cursors Declaring, fetching values Two approaches We have SQL for manipulating the database. To be able to write ordinary applications that use SQL, we can either Extend SQL with ordinary programming language constructs. SQL/PSM, PL/SQL Extend an ordinary programming language to support database operations through SQL. Embedded SQL, SQL/CLI (ODBC), JDBC, 4

Yet again two approaches Extending a programming language with support for database manipulation can be done in two ways: Embedding SQL within the source code of the host language. Embedded SQL Adding native mechanisms to the host language for interfacing to a database Call-level: SQL/CLI (C), JDBC (Java), many more High-level: HaskellDB, LINQ (C#) Embedded SQL Key idea: Use a preprocessor to turn SQL statements into procedure calls within the host language. All embedded SQL statements begin with EXEC SQL, so the preprocessor can find them easily. By the SQL standard, implementations must support one of: ADA, C, Cobol, Fortran, M, Pascal, PL/I. Shared variables To connect the SQL parts with the host language code, some variables must be shared. In SQL, shared variables are preceded by a colon. In the host language they are just like any other variable. Declare shared variables between EXEC SQL BEGIN DECLARE SECTION; /* declarations go here */ EXEC SQL END DECLARE SECTION; Example (in C): EXEC SQL BEGIN DECLARE SECTION; char thecourse[7]; int theperiod; char theteacher[41]; EXEC SQL END DECLARE SECTION; /* Read in values for thecourse and theperiod from stdin or somewhere else. */ EXEC SQL SELECT teacher INTO :theteacher FROM GivenCourses WHERE course = :thecourse AND period = :theperiod; /* Do something with theteacher */ 41-char array to hold 40 chars + end marker. SELECT INTO just like in SQL/PSM Embedded queries Same limitations as in SQL/PSM: SELECT INTO for a query guaranteed to return a single tuple. Otherwise, use cursors. Small syntactic difference between SQL/PSM and Embedded SQL cursors, but the key ideas are identical. Example (in C again): EXEC SQL BEGIN DECLARE SECTION; char thecourse[7]; char thename[51]; EXEC SQL END DECLARE SECTION; EXEC SQL DECLARE c CURSOR FOR (SELECT * FROM Courses); EXEC SQL OPEN CURSOR c; while(1){ EXEC SQL FETCH c INTO :thecourse, :thename; if (NOT FOUND) break; /* Print thecourse and thename to stdout */ EXEC SQL CLOSE CURSOR c; Only difference from SQL/PSM is the word CURSOR when opening and closing a cursor. Predefined C macro: #define NOT FOUND = strcmp(sqlstate, 02000 ) 5

Need for dynamic SQL Queries and statements with EXEC SQL can be compiled into calls for some library in the host language. However, we may not always know at compile time in what ways we want to manipulate the database. What to do then? Dynamic SQL We can prepare queries at compile time that will be instantiated at run time: Preparing: EXEC SQL PREPARE name FROM query-string; Executing: EXEC SQL EXECUTE name; Prepare once, execute many times. Example: A generic query interface Summary: Embedded SQL EXEC SQL BEGIN DECLARE SECTION; char thequery[max_length]; EXEC SQL END DECLARE SECTION; while(1){ /* issue SQL prompt */ /* read user query into array thequery */ EXEC SQL PREPARE q FROM :thequery; EXEC SQL EXECUTE q; Write SQL inline in host language code. Prepend SQL with EXEC SQL Shared variables. Prepend with colon in SQL code. No inherent control structures! Uses control structures of the host language. Compiled into procedure calls of the host language. JDBC JDBC = Java DataBase Connectivity JDBC is Java s call-level interface to SQL DBMS s. A library with operations that give full access to relational databases, including: Creating, dropping or altering tables, views, etc. Modifying data in tables Querying tables for information JDBC Objects JDBC is a library that provides a set of classes and methods for the user: DriverManager Handles connections to different DBMS. Implementation specific. Connection Represents a connection to a specific database. Statement, PreparedStatement Represents an SQL statement or query. ResultSet Manages the result of an SQL query. 6

Registering a driver The DriverManager is a global class with static functions for loading JDBC drivers and creating new connections. Load the Oracle JDBC driver: DriverManager.registerDriver( new oracle.jdbc.driver.oracledriver()); Will be done for you on the lab. Getting connected A Connection object represents a connection to a specific database: private static final String HOST = delphi.medic.chalmers.se ; private static final String PORT = 1521 ; private static final String SID = medic1 ; private static final String USER = username; private static final String PWD = password; Connection mycon = DriverManager.getConnection( jdbc:oracle:thin:@ + HOST + : + PORT + : + SID, USER, PWD); Will also be done for you on the lab, except username and password. Statements A Statement object represents an SQL statement or query, including schemaaltering statements. A Statement object represents one statement at a time, but may be reused. Statement mystmt = mycon.createstatement(); A statement is associated with a particular connection Using statements Statement objects have two fundamental methods: ResultSet executequery(string query) Given a string, which must be a query, run that query against the database and return the resulting set of rows. int executeupdate(string update) Given a string, which must be a non-query, run that update against the database. Note that a JDBC update is not an SQL update, but rather an SQL modification (which could be an update). Example: String code, name; /* Get values for code and name from user */ String myinsertion = INSERT INTO Courses VALUES ( + code +, + name + ) ; Statement mystmt = mycon.createstatement(); mystmt.executeupdate(myinsertion); Has return type int (the number of rows that were changed) Note the inserted single quotes. Quiz! What s wrong with the program below? String code; /* Get value for code from user */ No spaces! String myquery = SELECT namefrom SELECT name + CoursesWHERE code = FROM Courses + WHERE code = + code; No single-quotes either. Statement mystmt = mycon.createstatement(); ResultSet rs = mystmt.executequery(myquery); /* Do something with result. */ 7

Exceptions in JDBC Just about anything can go wrong! Syntactic errors in SQL code. Trying to run a non-query using executequery. Permission errors. Catch your exceptions! try { // database stuff goes in here catch (SQLException e) { Executing queries The method executequery will run a query against the database, producing a set of rows as its result. A ResultSet object represents an interface to this resulting set of rows. Note that the ResultSet object is not the set of rows itself it just allows us to access the set of rows that is the result of a query on some Statement object. ResultSet A ResultSet is very similar to a cursor in SQL/PSM or Embedded SQL. boolean next() Advances the cursor to the next row in the set, returning false if no such rows exists, true otherwise. X getx(i) X is some type, and i is a column number (index from 1). Example: rs.getint(1) returns the integer value of the first column of the current row in the result set rs. ResultSet is not a result set! Remember a ResultSet is more like a cursor than an actual set it is an interface to the rows in the actual result set. A Statement object can have one result at a time. If the same Statement is used again for a new query, any previous ResultSet for that Statement will no longer work! Courses code TDA357 TIN090 name Databases Algorithms GivenCourses course per teacher TDA357 2 Niklas Broberg TDA357 4 Rogardt Heldal TIN090 1 Devdatt Dubhashi TDA357 Databases Period 2: Niklas Broberg Period 4: Rogardt Heldal TIN090 Algorithms Period 1: Devdatt Dubhashi What will the result be? Quiz! Statement mystmt = mycon.createstatement(); ResultSet rs = mystmt.executequery( SELECT * FROM Courses ); while (rs.next()) { String code = rs.getstring(1); String name = rs.getstring(2); System.out.println(name + ( + code + ) ); ResultSet rs2 = mystmt.executequery( SELECT teacher FROM GivenCourses + WHERE course = + code + ); while (rs2.next()) System.out.println( + rs2.getstring(1)); Due to overuse of the same Statement, only the first course will be printed, with teachers. After the second query is executed, rs.next() will return false. 8

Two approaches If we need information from more than one table, there are two different programming patterns for doing so: Joining tables in SQL Join all the tables that we want the information from in a single query (like we would in SQL), get one large result set back, and use a ResultSet to iterate through this data. Use nested queries in Java Do a simple query on a single table, iterate through the result, and for each resulting row issue a new query to the database (like in the example on the previous page, but without the error). Example: Joining in SQL Statement mystmt = mycon.createstatement(); ResultSet rs = mystmt.executequery( SELECT code, name, period, teacher + FROM Courses, GivenCourses + WHERE code = course + ORDER BY code, period ); Compare with previous row to see if this is a new course. If it is, print its name. String currentcourse, course; while (rs.next()) { course = rs.getstring(1); if (!course.equals(currentcourse)) System.out.println(rs.getString(2)); System.out.println( Period + rs.getint(3) + : + rs.getstring(4)); currentcourse = course; Example: Using nested queries in Java Statement cstmt = mycon.createstatement(); Statement gcstmt = mycon.createstatement(); ResultSet courses = cstmt.executequery( SELECT code, name + FROM Courses + ORDER BY code ); while (courses.next()) { String course = courses.getstring(1); System.out.println(courses.getString(2)); ResultSet gcourses = gcstmt.executequery( Find the given SELECT period, teacher + courses for each FROM GivenCourses course WHERE course = + course + + separately with ORDER BY period ); an inner query. while (gcourses.next()) { System.out.println( Period + gcourses.getint(1) + : + gcourses.getstring(2)); Comparison Joining in SQL Requires only a single query. Everything done in the DBMS, which is good at optimising. Nested queries Many queries to send to the DBMS communications/network overhead compile and optimise many similar queries Logic done in Java, which means optimisations must be done by hand. Limits what can be done by the DBMS optimiser. PreparedStatement Some operations on the database are run multiple times, with the same or only slightly different data. Example: asking for information from the same table, perhaps with different tests, or with a different ordering. We can create a specialized PreparedStatement with a particular associated query or modification. PreparedStatement mypstmt = mycon.preparestatement( SELECT * FROM Courses ); Parametrized prepared statements We can parametrize data in a statement. Data that could differ is replaced with? in the statement text.? parameters can be instantiated using functions setx(int index, X value). PreparedStatement mypstmt = mycon.preparestatement( INSERT INTO Courses VALUES (?,?) ); mypstmt.setstring(1, TDA356 ); mypstmt.setstring(2, Databases ); 9

Summary JDBC DriverManager Register drivers, create connections. Connection Create statements or prepared statements. Close when finished. Statement Execute queries or modifications. PreparedStatement Execute a particular query or modification, possibly parametrized. ResultSet Iterate through the result set of a query. SQL Injection http://xkcd.com/327/ http://www.val.se/val/val2010/handskrivna/handskrivna.skv K;13;Hallands län;80;halmstad;01;halmstads västra valkrets;904;söndrum 4;pwn DROP TABLE VALJ;1 Quiz! Write a query in SQL that returns the value 1. Assuming we have a table T, we could write it as SELECT 1 FROM (SELECT COUNT(*) FROM T); We must use an aggregation, otherwise we cannot ensure that we get only one value as the result. Oracle recognizes this problem and supplies the table Dual. This table has one column dummy, and one row with the value X. Since it is guaranteed to have only one row in it, we can write the above as Lab Part IV - Interfacing Write a Java application that uses JDBC to connect to and use the database that you created in part II. Your application should make use of the views and triggers that you created in parts II and III. Start from a stub application. SELECT 1 FROM Dual; Lab Part IV - Interfacing Hand in (yes, hand in!): Your Java source code The fourth part of the lab will be accepted or rejected at the lab supervision sessions! You will show us your running application, we will stress test it, and ask to see some parts of the source code. You should still hand in your source code! Deadline: Friday 19 December (at the supervision session) Final deadline! The final, hard deadline for all parts of the lab is Friday 19 December, at the supervision session. If your lab is not accepted by the deadline, you will be asked to come back to finish it in period 3. 10