|
NAMEDBIx::SQLEngine::Driver::Informix - Support DBD::Informix and DBD::ODBC/InformixSYNOPSISDBI Wrapper: Adds methods to a DBI database handle.my $sqldb = DBIx::SQLEngine->new( 'dbi:Informix:test_data@my_server' ); Portability Subclasses: Uses driver's idioms or emulation. $sqldb->do_insert( # use SERIAL column table => 'students', sequence => 'id', values => { 'name'=>'Dave', 'age'=>'19', 'status'=>'minor' }, ); DESCRIPTIONThis package provides a subclass of DBIx::SQLEngine which compensates for Informix'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.For more information about the underlying driver class, see DBD::Informix. Under DevelopmentNote that this driver class has been added recently and not yet tested in real-world conditions.To Do: Add missing functionality from related CPAN modules. See DBD::Informix::Summary, DBIx::SearchBuilder::Handle::Informix and maybe Dimedis::SqlDriver::Informix. FETCHING DATA (SQL DQL)Methods Used By Complex Queries
EDITING DATA (SQL DML)Insert to Add Data
DEFINING STRUCTURES (SQL DDL)Column Type Methods
ADVANCED CAPABILITIESCall, Create and Drop Stored Procedures
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.
Visit the GSP FreeBSD Man Page Interface. |