|
NAMEDBIx::SQLEngine::Driver::MSSQL - Support Microsoft SQL Server via DBD::ODBCSYNOPSISDBI Wrapper: Adds methods to a DBI database handle.my $sqldb = DBIx::SQLEngine->new( 'dbi:odbc:mycnxn' ); 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 Microsoft SQL Server's idiosyncrasies.Under DevelopmentNote: this driver class has been added recently and not yet tested in real-world conditions.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
DEFINING STRUCTURES (SQL DDL)Create and Drop Tables
INTERNAL STATEMENT METHODS (DBI STH)Statement Handle Lifecycle
recoverable_query_exceptions$sqldb->recoverable_query_exceptions() : @common_error_messages Provides a list of error messages which represent common communication failures or other incidental errors. 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. |