1 Database Application Development Programming With Databases.

Slides:



Advertisements
Similar presentations
Connecting to Databases. relational databases tables and relations accessed using SQL database -specific functionality –transaction processing commit.
Advertisements

Copyright  Oracle Corporation, All rights reserved. 2 Java and Databases: An Overview.
Database Management Systems, R. Ramakrishnan and J. Gehrke1 SQL: Queries, Programming, Triggers Chapter 5.
CSC343 – Introduction to databases – A. Vaisman1 Database Application Development.
1 "A mind once stretched by new thoughts can never regain its original shape.” -- Albert Einstein Prove that each positive integer has a multiple that.
CSC056-Z1 – Database Management Systems – Vinnie Costa – Hofstra University1 Database Management Systems Session 6 Instructor: Vinnie Costa
CMPT 354, Simon Fraser University, Fall 2008, Martin Ester 250 Database Systems I SQL in a Server Environment.
Embedded SQL John Ortiz. Lecture 15Embedded SQL2 Why Isn’t Interactive SQL Enough?  How to do this using interactive SQL?  Print a well-formatted transcript.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 13 Introduction to SQL Programming Techniques.
Murali Mani SQL with other Programming Languages.
1 Database Application Development Chapter 6. 2 Overview  SQL in application code  Embedded SQL  Cursors  Dynamic SQL  JDBC  Stored procedures.
1 Database Application Development Chapter 6. 2 Overview  SQL in application code  Embedded SQL  Cursors  Dynamic SQL  JDBC  Stored procedures.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Database Application Development Chapter 6.
SPRING 2004CENG 3521 SQL: Constraints, Triggers, Embedded SQL Chapters: 5, 6.
1 C. Shahabi Application Programming for Relational Databases Cyrus Shahabi Computer Science Department University of Southern California
1 Lecture 29 More on JDBC Overview  Objectives of this lecture  JDBC and its Drivers  Connecting to Databases (Java’s Connection class)  Querying a.
EmbeddedSQL: 1 Impedance Mismatch Problem Problem : How to connect SQL statements with conventional programming languages Different models of language.
Database Application Development R&G Chapter 6 Lecture 16.
Internet Database Application Development Module 6.
Advance Computer Programming Java Database Connectivity (JDBC) – In order to connect a Java application to a database, you need to use a JDBC driver. –
1 CSC 440 Database Management Systems JDBC This presentation uses slides and lecture notes available from
1 Java Database Connection (JDBC) There are many industrial-strength DBMS's commercially available in the market. Oracle, DB2, and Sybase are just a few.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke; edited K. Shomper1 Database Application Development Chapter 6.
CS178 Database Management “JDBC”. What is JDBC ? JDBC stands for “Java DataBase Connectivity” The standard interface for communication between a Java.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Database Application Development Chapter 6.
Announcements Read JDBC Project Step 5, due Monday.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 9- 1 DATADABASE PROGRAMMING 2Chapter 13 from our text.
Chapter 8 Using SQL in an Application. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 8-2 CSC 4480 outline Intro (3-9) Static SQL (10-11)
VICTORIA UNIVERSITY OF WELLINGTON Te Whare Wananga o te Upoko o te Ika a Maui COMP 302 Database Systems Java Data Base Connectivity Lecturer Dr Pavle Mogin.
CS 405G: Introduction to Database Systems Database programming.
Database Application Development SQL In Application Code : 1. Embedded SQL 2. Database API’s 3. SQLJ.
ICS 321 Fall 2009 ODBC, JDBC & Stored Procedures Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 10/8/20091Lipyeow.
CSCD34 - Data Management Systems – A. Vaisman1 Database Application Development.
ICS 321 Fall 2010 SQL in a Server Environment (i) Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 11/1/20101Lipyeow.
1 Database Application Development Chapter 6 Sections 6.1 –
SQL in a Programming Environment CIS 4301 Lecture Notes Lecture /11/2006.
Database Systems Design, Implementation, and Management Coronel | Morris 11e ©2015 Cengage Learning. All Rights Reserved. May not be scanned, copied or.
Java Database Connectivity. Java and the database Database is used to store data. It is also known as persistent storage as the data is stored and can.
Chapter 6 MORE SQL: Assertions, Views, and Programming Techniques Copyright © 2004 Pearson Education, Inc.
JDBC Database Programming in Java Prepared by., Mrs.S.Amudha AP/SWE.
1 CS 430 Database Theory Winter 2005 Lecture 14: Additional SQL Topics.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Database Application Development Chapter 6 Sections –
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Database Application Development Chapter 6 Sections 6.1 –
Introduction to SQL ; Christoph F. Eick & R. Ramakrishnan and J. Gehrke 1 Introduction to SQL Part III COSC 3480 Teaching Plan Part 1.SQL in 45 Minutes.
JDBC and SQLJ CIS 612 Spring JDBC JDBC is an API that enables database access from Java programs JDBC for DB access provides ◦ Portability across.
1 Database Application Development Chapter 6 Sections –
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Database Application Development Chapter 6.
Access Databases from Java Programs via JDBC Tessema M. Mengistu Department of Computer Science Southern Illinois University Carbondale
Database Management Systems 1 Raghu Ramakrishnan Database Application Development Chpt 6 Xin Zhang.
Database Programming With Java & JDBC Reading: DD Ch. 18, pp al/jdbc/index.html, or anything covering JDBC.
Database Application Development Database Programming Embedded SQL Dynamic SQL Embedded SQL in Java Database APIs: Alternative to embedding Embedded SQL.
JDBC Statements The JDBC Statement, CallableStatement, and PreparedStatement interfaces define the methods and properties that enables to send SQL or PL/SQL.
Copyright © 2016 Ramez Elmasri and Shamkant B. Navathe.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Database Application Development Chapter 6.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Database Application Development Chapter 6.
1 Database Application Development Chapter 6. 2 Overview  SQL in application code  Embedded SQL  Cursors  Dynamic SQL  JDBC.
Instructor: Jinze Liu Fall /8/2016Jinze University of Kentucky 2 Database Project Database Architecture Database programming.
COP Introduction to Database Structures
Database Application Development
Database Application Development
Database Application Development
SQL: The Query Language
CPSC-310 Database Systems
Objectives In this lesson, you will learn about:
Database Application Development
Database Application Development
DB Programming: SQL Programming Techniques
Database Application Development
Database Application Development
Database Application Development
Presentation transcript:

1 Database Application Development Programming With Databases

2 Overview Concepts covered in this lecture:  SQL in application code  Embedded SQL  Cursors  Dynamic SQL  Stored procedures

3 Example: Course Enrolment User/ClientApplicationDatabase Enters request: add course, drop course Sends query: Course availability, student info,… Returns data Checks constraints returns confirmation for display

4 Programming With SQL

5 SQL statements as Part of a larger software system  So far:  interactive SQL interface,  pure “SQL programs”.  In practice often:  queries are not ad-hoc, but programmed once and executed repeatedly.  need the greater flexibility of a general-purpose programming language:  for complex calculations  graphic user interfaces.

6 Key Questions  How do we send SQL commands to a database management system from within an application program?  How do we get the answer back in a way that can be processed by the application program?  Rather than extending a programming language with SQL capability, how about extending SQL with programming capabilities?

7 SQL in Application Code  SQL commands can be called from within a host language (e.g., C++ or Java ) program.  SQL statements can refer to host variables (including special variables used to return status).  Must include a statement to connect to the right database.

8 Overview Static Queries: Query form known at compile time Dynamic Queries Execution in Application Space Embedded SQL SQLJ API: Dynamic SQL ODBC, JDBC Server ExecutionStored Procedure SQL/PSM Could also have dynamic stored procedures but we won’t discuss it.

9 SQL in Application Code (Contd.) Impedance mismatch:  SQL relations are (multi-) sets of records, with no a priori bound on the number of records.  No such data structure exists traditionally in procedural programming languages such as C++ or Java.  SQL supports a mechanism called a cursor to handle this.

10 Cursors

11 Embedded SQL  Approach: Embed SQL in the host language.  A preprocessor converts the SQL statements into special API calls for a database system.  Then a regular compiler is used to compile the code. Host language + Embedded SQL Preprocessor Host language Compiler Host language + Function calls Host language Object code SQL Library

12 Embedding SQL in C: An Example char SQLSTATE[6]; EXEC SQL BEGIN DECLARE SECTION char c_sname[20]; short c_minrating; float c_age; EXEC SQL END DECLARE SECTION c_minrating = random(); EXEC SQL DECLARE sinfo CURSOR FOR SELECT S.sname, S.ageFROM Sailors S WHERE S.rating > :c_minrating ORDER BY S.sname; EXEC SQL OPEN sinfo; do { EXEC SQL FETCH sinfo INTO :c_sname, :c_age; printf(“%s is %d years old\n”, c_sname, c_age); } while (SQLSTATE != ‘02000’); EXEC SQL CLOSE sinfo;

13 Embedded SQL  Embedded SQL constructs:  Connecting to a database: EXEC SQL CONNECT  Declaring shared variables: EXEC SQL BEGIN (END) DECLARE SECTION  SQL Statements: EXEC SQL Statement; all statements except queries can be directly embedded  Declaring and manipulating cursors for embedding SQL queries

14 Embedded SQL: Variables EXEC SQL BEGIN DECLARE SECTION char c_sname[20]; long c_sid; short c_rating; float c_age; EXEC SQL END DECLARE SECTION  Two special “error” variables:  SQLCODE (long, is negative if an error has occurred)  SQLSTATE (char[6], predefined codes for common errors)

15 Cursors  Can declare a cursor on a relation or query statement (which generates a relation).  Can open a cursor, and repeatedly fetch a tuple then move the cursor, until all tuples have been retrieved.  Can use a special clause, called ORDER BY, to control the order in which tuples are returned.  Fields in ORDER BY clause must also appear in SELECT clause.  Can also modify/delete tuple pointed to by a cursor.

16 Terminology  “Cursor” is the official SQL term.  Many programming languages have their term for the same concept. LanguageTerm SQL StandardCursor Stored Procedures PSMCursor JavaResultSet Visual Studio (C##, Visual Basic) DataReader

17 Cursor that gets names of sailors who’ve reserved a red boat, in alphabetical order Most implementations differ from SQL standard:  Can use order by without cursor.  Can have many expressions for order criteria. EXEC SQL DECLARE sinfo CURSOR FOR SELECT S.sname FROM Sailors S, Boats B, Reserves R WHERE S.sid=R.sid AND R.bid=B.bid AND B.color=‘red’ ORDER BY S.sname

18 Example Revisited char SQLSTATE[6]; EXEC SQL BEGIN DECLARE SECTION char c_sname[20]; short c_minrating; float c_age; EXEC SQL END DECLARE SECTION c_minrating = random(); EXEC SQL DECLARE sinfo CURSOR FOR SELECT S.sname, S.ageFROM Sailors S WHERE S.rating > :c_minrating ORDER BY S.sname; EXEC SQL OPEN sinfo; do { EXEC SQL FETCH sinfo INTO :c_sname, :c_age; printf(“%s is %d years old\n”, c_sname, c_age); } while (SQLSTATE != ‘02000’); EXEC SQL CLOSE sinfo;

19 Database APIs Add library with database calls (API)  Special standardized interface: procedures/objects  Pass SQL strings from language, presents result sets in a language-friendly way  Sun’s JDBC: Java API  Supposedly DBMS-neutral  a driver traps the calls and translates them into DBMS- specific code  database can be across a network.  Source code and executable is independent of DBMS.

20 Dynamic SQL

21 Dynamic SQL  Often, the concrete SQL statement is known not at compile time, but only at runtime.  Example 1: a program prompts user for parameters of SQL query, reads the parameters and executes query.  Example 2: a program prompts user for an SQL query, reads and executes it.  Construction of SQL statements on-the-fly: PREPARE: parse and compile SQL command. EXECUTE: execute command.

22 Dynamic SQL: Example char c_sqlstring[]= {“DELETE FROM Sailors WHERE rating > 5”}; EXEC SQL PREPARE readytogo FROM :c_sqlstring; EXEC SQL EXECUTE readytogo;

23 CONNECTING TO DATABASES

24 Connection Flow Chart Load Driver Manager Driver Manager Connection Statement Query = string Cursor, ResultSet create execute return repeat this part do this once

25 Python Database Connectivity  See CSIL website for how to connect. See CSIL website  Python has the built-in concept of a tuple, so fetching one row from a cursor returns a tuple!  Python Database Tutorial Python Database Tutorial

26 Python Example >>> import pymssql >>> conn = pymssql.connect(host='cypress.csil.sfu.ca',user='s_oschulte',password=’J****’, database='oschulte354') >>> mycursor = conn.cursor() >>> tablename = 'sailors' >>> mycursor.execute('SELECT * from '+tablename) >>> row = mycursor.fetchone() >>> print row (22, u'Dustin', 7, 45.0) >>> print row[0:2] (22, u'Dustin') >>> while row: print "Sailor ID and Sailor Name are", row[0:2] row = mycursor.fetchone() Sailor ID and Sailor Name are (22, u'Dustin') Sailor ID and Sailor Name are (29, u'Brutus')..... Sailor ID and Sailor Name are (32, u'Andy') >>> conn.close()

27 Visual Studio Example Visual Studio Connection Example Visual Studio Connection Example see course website.

28 JDBC: Architecture  Four architectural components:  Application (initiates and terminates connections, submits SQL statements)  Driver manager (load JDBC driver)  Driver (connects to data source, transmits requests and returns/translates results and error codes)  Data source (processes SQL statements)

29 JDBC Example Connection con = DriverManager.getConnection(url, ”login", ”pass"); // connection object created by Driver Manger Statement stmt = con.createStatement(); // set up statement for the connection String query = "SELECT name, rating FROM Sailors"; ResultSet rs = stmt.executeQuery(query); try { // handle exceptions // loop through result tuples while (rs.next()) { // while there is a next tuple String s = rs.getString(“name"); // get value of “name” in current tuple Int n = rs.getFloat(“rating"); // get value of “rating” in current tuple System.out.println(s + " " + n); } } catch(SQLException ex) { System.out.println(ex.getMessage () + ex.getSQLState () + ex.getErrorCode ()); }

30 JDBC Driver Management  All drivers are managed by the DriverManager class  Loading a JDBC driver:  In the Java code: Class.forName(“oracle/jdbc.driver.Oracledriver”); Class.forName(“com.mysql.jdbc.Driver”);  When starting the Java application: -Djdbc.drivers=oracle/jdbc.driver  Check CSIL documentation!CSIL documentation

31 Connections in JDBC We interact with a data source through sessions. Each connection identifies a logical session.  JDBC URL: jdbc: : Example: String url=“jdbc:oracle: Connection con; try{ con = DriverManager.getConnection(url,usedId,password); } catch SQLException except { …}

32 Connection Class Interface  public boolean getReadOnly() and void setReadOnly(boolean b) Specifies whether transactions in this connection are read- only  public boolean getAutoCommit() and void setAutoCommit(boolean b) If autocommit is set, then each SQL statement is considered its own transaction. Otherwise, a transaction is committed using commit(), or aborted using rollback().  public boolean isClosed() Checks whether connection is still open.

33 ResultSets A ResultSet is a very powerful cursor:  previous() : moves one row back  absolute(int num) : moves to the row with the specified number  relative (int num) : moves forward or backward  first() and last()  RecordSet, DataReader in Visual Basic

34 Call ResultSets  PreparedStatement.executeUpdate only returns the number of affected records  PreparedStatement.executeQuery returns data, encapsulated in a ResultSet object (a cursor) ResultSet rs=pstmt.executeQuery(sql); // rs is now a cursor While (rs.next()) { // process the data }

35 Stored Procedures

36 Stored Procedures  A stored procedure is a function / procedure written in a general-purpose programming language that is executed within the DBS.  Performs computations that cannot be expressed in SQL.  Procedure executed through a single SQL statement.  Executed in the process space of the DB server.  SQL standard: PSM (Persistent Stored Modules). Extends SQL by basic concepts of a general-purpose programming language.

37 Advantages of Stored Procedures  Can encapsulate application logic while staying close to the data.  Reuse of application logic by different users.  Avoid tuple-at-a-time return of records through cursors.  Provides data security (like a view).

38 Stored Procedures: Examples CREATE PROCEDURE ShowNumReservations SELECT S.sid, S.sname, COUNT(*) FROM Sailors S, Reserves R WHERE S.sid = R.sid GROUP BY S.sid, S.sname Stored procedures can have parameters:  Three different modes: IN, OUT, INOUT CREATE PROCEDURE IncreaseRating( IN sailor_sid INTEGER, IN increase INTEGER) UPDATE Sailors SET rating = rating + increase WHERE sid = sailor_sid

39 Stored Procedures: Examples (Contd.) Stored procedure does not have to be written in SQL: CREATE PROCEDURE TopSailors( IN num INTEGER) LANGUAGE JAVA EXTERNAL NAME “file:///c:/storedProcs/rank.jar”

40 Main SQL/PSM Constructs (Contd.)  Local variables (DECLARE)  RETURN values for FUNCTION  Assign variables with SET  Branches and loops:  IF (condition) THEN statements; ELSEIF (condition) statements; … ELSE statements; END IF;  LOOP statements; END LOOP  Queries can be parts of expressions  Can use cursors without “EXEC SQL”

41 Calling Stored Procedures EXEC SQL BEGIN DECLARE SECTION Int sid; Int rating; EXEC SQL END DECLARE SECTION // now increase the rating of this sailor EXEC SQL CALL IncreaseRating(:sid,:rating);

42 SQL/PSM Most DBMSs allow users to write stored procedures in a simple, general-purpose language (close to SQL)  SQL/PSM standard is a representative Declare a stored procedure: CREATE PROCEDURE name(p1, p2, …, pn) local variable declarations procedure code; Declare a function: CREATE FUNCTION name (p1, …, pn) RETURNS sqlDataType local variable declarations function code;

43 Main SQL/PSM Constructs CREATE FUNCTION rate Sailor (IN sailorId INTEGER) RETURNS INTEGER DECLARE rating INTEGER DECLARE numRes INTEGER SET numRes = (SELECT COUNT(*) FROM Reserves R WHERE R.sid = sailorId) IF (numRes > 10) THEN rating =1; ELSE rating = 0; END IF; RETURN rating;

44 SQL Server Version CREATE FUNCTION rateSailor INT) RETURNS INT AS BEGIN INT INT = (SELECT COUNT(*) FROM Reserves R WHERE R.sid > 10 = 1 ELSE = 0 END GO; SELECT dbo.rateSailor(22); go

45 MySQL Version DELIMITER $$ CREATE FUNCTION rateSailor(sailorId INT) RETURNS INT BEGIN DECLARE numRes INT; DECLARE rating INT; SET numRes = (SELECT COUNT(*) FROM Reserves R WHERE R.sid = sailorId); IF numRes > 10 THEN SET rating = 1; ELSE SET rating = 0; END IF; RETURN rating; END $$ select rateSailor(22);

46 Calling Stored Procedures (Contd.) JDBC: CallableStatement cstmt= con.prepareCall(“{call ShowSailors}); ResultSet rs = cstmt.executeQuery(); while (rs.next()) { … }

47 Summary

48 SQL Connectivity  Embedded SQL allows execution of parametrized static queries within a host language  Dynamic SQL allows execution of completely ad- hoc queries within a host language  Cursor mechanism allows retrieval of one record at a time and bridges impedance mismatch between host language and SQL  APIs such as JDBC introduce a layer of abstraction between application and DBMS

49 Stored Procedures  Stored procedures execute application logic directly at the server  SQL/PSM standard for writing stored procedures

50 Midterm News  Answer Key will be ed today.  Grades probably released today too.  Grades are out of 70 points total.  You can visit your midterm in office hours on Monday.