Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

14
MySQL Lectures Notes Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008

Transcript of Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Page 1: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

MySQL Lectures NotesStored Procedures, Triggers,

Program AccessDr Lisa Ball

2008

Page 2: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Sources

1. dev.mysql.com2. www.mysqltutorial.org3. www.digitalpropulsion.org4. www.databasedesign-resource.com/

mysql-triggers.html

Page 3: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Trigger Example DELIMITER $$ -- set delimeter (allow ; inside)

CREATE TRIGGER newsCounterAFTER INSERT ON NewsFOR EACH ROW BEGIN INSERT INTO NewsCount (newsItemCount) 

(SELECT count(*) FROM News);END;$$

DELIMITER ; -- reset delimeter

Page 4: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Sample DBCREATE TABLE NewsCategories

( catID int not null auto_increment,  catName varchar(32),  primary key(catID));

CREATE TABLE News( newsID int not null auto_increment, 

catID int not null,  title varchar(32) not null, txt blob, 

primary key(newsID));

CREATE TABLE NewsCount( newsItemCount int );

Page 5: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Trigger ExampleDELIMITER $$

CREATE TRIGGER newsCategoryHandlerAFTER DELETE ON NewsCategoriesFOR EACH ROW BEGIN DELETE FROM News 

WHERE catID=OLD.catID;END;$$

DELIMETER ;-- Note: can reference NEW.attr on insert, update

Page 6: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Trigger Example

DELIMITER $$

CREATE TRIGGER newsCounterAFTER INSERT ON NewsFOR EACH ROW BEGIN DELETE FROM NewsCount; INSERT INTO NewsCount (newsItemCount)

 (SELECT count(*) FROM News);END;

$$

Page 7: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Trigger Statements DROP TRIGGER newsCounter; SHOW TRIGGERS;

One trigger per event, per table Can add procedural elements, such

as IF statements See reference 4 (databasedesign-

resource) for another example

Page 8: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Stored Procedures Why go to the trouble of extracting logic from your application, putting

it into a different format, and placing it on the database server? There are several advantages to doing so. Here is a (incomplete) list of some of the most commonly sited advantages:

MySQL stored procedures can greatly cut down on the amount of traffic going back and forth over your network. (usually FASTER in general than using app program)

Stored procedures can greatly improve the security of your database server. SQL that is executed on the server is not subject to SQL injection attacks.

Stored procedures provide a way to abstract and separate data access routines from the business logic of your application.

Stored procedures allow these routines to be accessed by programs using different platforms and API's, and make your applications more portable.

From source 4 (databasedesign-resource)

Page 9: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Stored Procedures Block structured language similar to

Oracle PL/SQL and IBM DB2 SQL Some folks recommend using MySQL

query browser to aid creation, but can be done from command line

Seeing what you have• SHOW PROCEDURE STATUS; • SHOW PROCEUDRE LIKE ‘%Test%’;• SHOW CREATE PROCEDURE myproc;

Page 10: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Stored Procedures Sample DB

-- create News table, be sure to be in a 'test' DBCREATE TABLE News (NewsID int auto_increment not null,

  Title varchar(32),  primary key(NewsID))

Page 11: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Stored ProceduresDELIMITER $$

DROP PROCEDURE IF EXISTS sprocTest $$CREATE PROCEDURE sprocTest (id int, title varchar(32))BEGIN -- INSERT NEW RECORD IF PREEXISTING RECORD DOESNT EXIST IF (id = 0) THEN   SET id = null; END IF;

 IF (id IS NOT NULL) AND (EXISTS (SELECT * FROM News WHERE NewsID=id))

 THEN   UPDATE News SET Title=title WHERE NewsID=id; ELSE   INSERT INTO News (Title) VALUES (title); END IF;END $$

DELIMITER ;

To call:

CALL sprocTest(1,'Some News Title');  -- this will update recordID 1

Page 12: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Stored Procedures Using cursors

• Let’s us loop on each row returned from a query (the result set)

• see design-resources link (also on next slide)

Page 13: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

stored procedure using cursors in a loop

To use:call events(‘11/09’);

more detailed tutorial at mysqltutorial.org

Page 14: Stored Procedures, Triggers, Program Access Dr Lisa Ball 2008.

Program DB Access First:

• Chapter 9 Slides 18-37 from Elmasri 5th edition Some sources for Java access

• http://www.kitebird.com/articles/jdbc.html• http://www.cs.ucdavis.edu/~devanbu/

teaching/160/docs/mysql_java.pdf• http://www.romow.com/computer-blog/how-to-

use-mysql-with-java/

Can also access mysql with Perl, PHP, Python, Ruby