|
NAMEDBIx::SQLEngine::Driver::Trait::NoPlaceholders - For drivers without placeholdersSYNOPSIS# Classes can import this behavior if they don't have joins using "on" use DBIx::SQLEngine::Driver::Trait::NoPlaceholders ':all'; # Queries which would typically use placeholders need special treatment $hash_ary = $sqldb->fetch_select( table => 'students', where => { 'status'=>'minor' }, ); DESCRIPTIONThis package supports drivers or database servers which do support the use of "?"-style placeholders in queries.This is a problem for Linux users of DBD::Sybase connecting to MS SQL Servers on Windows. This package attempts to substitute the placeholders into the query before executing it. About Driver TraitsYou do not need to use this package directly; it is used internally by those driver subclasses which need it.For more information about Driver Traits, see "About Driver Traits" in DBIx::SQLEngine::Driver. REFERENCEDatabase Capability Information
Statement Handle Lifecycle
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. |