|
NAMEDBIx::SQLEngine::Driver::Oracle - Support DBD::Oracle and DBD::ODBC/OracleSYNOPSISDBI Wrapper: Adds methods to a DBI database handle.my $sqldb = DBIx::SQLEngine->new( 'dbi:oracle:test' ); Portability Subclasses: Uses driver's idioms or emulation. $hash_ary = $sqldb->fetch_select( table => 'students' limit => 5, offset => 10 ); DESCRIPTIONThis package provides a subclass of DBIx::SQLEngine which compensates for Oracle's idiosyncrasies.About Driver SubclassesYou do not need to use this package directly; when you connect to a database, the SQLEngine object is automatically re-blessed in to the appropriate subclass.FETCHING DATA (SQL DQL)Methods Used By Complex Queries
EDITING DATA (SQL DML)Insert to Add Data
seq_increment$sqldb->seq_increment( $table, $field ) : $new_value Increments the sequence, and returns the newly allocated value. DEFINING STRUCTURES (SQL DDL)Detect Tables and Columns
Column Type MethodsThe following methods are used by sql_create_table to specify column information in a DBMS-specific fashion.
ADVANCED CAPABILITIESCall, Create and Drop Stored ProceduresNote: this feature has been added recently, and not yet tested in real-world conditions.
INTERNAL CONNECTION METHODS (DBI DBH)Checking For Connection
Statement Error Handling
SEE ALSOSee DBIx::SQLEngine for the overall interface and developer documentation.See DBIx::SQLEngine::Docs::ReadMe for general information about this distribution, including installation and license information. POD ERRORSHey! The above document had some coding errors, which are explained below:
Visit the GSP FreeBSD Man Page Interface. |