stored proc.txt
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. Stored Procedures for Auto-Generated Keys
  2. -----------------------------------------
  3. Here we have an example of a stored procedure that will insert a row into the database and return the auto-generated primary key field within the same database call.  The primary key is needed to return from ejbCreate, as mandated by the spec.  The stored procedure uses an Oracle sequence named accountID to generate primary keys.
  4. InsertAccount stored procedure for Oracle
  5. create or replace procedure insertAccount
  6.    (owner IN varchar, 
  7.     bal IN integer, 
  8.     newid OUT integer) 
  9. AS
  10. BEGIN
  11.    insert into accounts (id, ownername, balance) 
  12.                  values (accountID.nextval, owner, bal)
  13.                  returning id into newid;
  14. END;