Oracle 10g: Using The Returning Clause With ADOdb

Plymouth State University uses Oracle heavily due to its Student Information System of choice – SungardHE Banner. As such, I play around in Oracle a lot (sometimes a lot more than I’d like) and I occasionally find functionality that seems more cumbersome than it should.

One such item is selecting the last inserted value on an auto-incrementing column.

Historically, when you are inserting into a table with auto incrementing values (via a sequence) you have always been able to grab the last value with a simple SELECT statement (line 22):

-- setup a table
CREATE TABLE bork (id INTEGER NOT NULL PRIMARY KEY, data VARCHAR2(10) NOT NULL);

-- create the sequence
CREATE SEQUENCE sq_bork INCREMENT BY 1 START WITH 1; 

-- create a trigger for auto-incrementing the sequence'
CREATE OR REPLACE TRIGGER tr_sq_bork
BEFORE INSERT
ON bork
REFERENCING NEW AS NEW
FOR EACH ROW 
BEGIN
SELECT sq_bork.NEXTVAL INTO :NEW.id FROM DUAL;
END;
/

-- insert a record into the table
INSERT INTO bork (name) VALUES ('Matt');

-- retrieve last inserted id
SELECT sq_bork.CURRVAL FROM dual;

As you see there, two statements must be executed to get that new id. The INSERT and the SELECT. Well, as of Oracle 10g you can utilize the RETURNING clause like so:

INSERT INTO bork (name) VALUES ('Matt') RETURNING id INTO i_id;

That statement inserts a record into “bork” and returns the value of “id” into the “i_id” variable. Pretty sexy and all with one DML statement. Here’s what we do at Plymouth to utilize the RETURNING clause with the PHP library ADOdb:

< ?php
//do your database object initialization here:
//$db = new ADONewConnection...

$sql = "BEGIN INSERT INTO bork (data) VALUES ('Matt') RETURNING id INTO :i_id; END;";
$stmt = $db->PrepareSP($sql);
$db->OutParameter($stmt, $inserted_id, 'i_id');
$db->Execute($stmt);
?>

Yup. 4 lines of PHP but only 1 statement sent to the database! I’d take the extra lines any day over the latency of data retrieval.


Comments

2 responses to “Oracle 10g: Using The Returning Clause With ADOdb”

  1. I did this and it deleted all my Oracle tables. =(

  2. Can you tell me why this fails?

    // Spell out the procedure
    $_proc_call = “begin :retval := commentary_functions.insert_article_notes(:article_id, :note, :user_id); end;”;

    // Prep the procedure for the actual call
    $_stmt = $conn->Prepare($_proc_call, false);

    // Bind the inbound parameters
    $conn->InParameter($_stmt, $_article_id, ‘article_id’);
    $conn->InParameter($_stmt, $_notes, ‘note’);
    $conn->InParameter($_stmt, $_user_id, ‘user_id’);

    // Bind the return record set
    // $conn->OutParameter($stmt, $_cur, ‘curvar’, -1, OCI_B_CURSOR);
    $conn->OutParameter($_stmt, $_output, ‘retval’, 32);

    // Execute the procedure and return an array
    $_rs = $conn->Execute($_stmt);