|
NAMESPOPS::DBI::Oracle -- Oracle-specific routines for the SPOPS::DBISYNOPSIS# Define your table and sequence CREATE TABLE mytable ( id int not null primary key, ... ); CREATE SEQUENCE MySeq; # In your configuration: 'myspops' => { 'isa' => [ qw/ SPOPS::DBI::Oracle SPOPS::DBI / ], 'id' => 'id', 'no_insert' => [ 'id' ], 'increment_field' => 1, 'sequence_name' => 'MySeq'; ... }, DESCRIPTIONThis subclass allows you to specify a sequence name from which you can retrieve the next ID value.METHODSpre_fetch_idFetch the data from the specified sequence and return it. sql_quote DBD::Oracle uses the type of a field to implement the DBI "quote()" call, so we override the default 'sql_quote' from SPOPS::SQLInterface. BUGSNone known.TO DONothing known.SEE ALSODBD::OracleDBI COPYRIGHTCopyright (c) 2002-2004 intes.net, inc.. All rights reserved.This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHORSChris Winters <chris@cwinters.com>
Visit the GSP FreeBSD Man Page Interface. |