File indexing completed on 2024-11-24 05:18:58
0001 <?php 0002 0003 /** 0004 * Flooer Framework 0005 * 0006 * LICENSE: BSD License (2 Clause) 0007 * 0008 * @category Flooer 0009 * @package Flooer_Db 0010 * @subpackage Statement 0011 * @author Akira Ohgaki <akiraohgaki@gmail.com> 0012 * @copyright Akira Ohgaki 0013 * @license https://opensource.org/licenses/BSD-2-Clause BSD License (2 Clause) 0014 * @link https://github.com/akiraohgaki/flooer 0015 */ 0016 0017 /** 0018 * Usage 0019 * 0020 * $db->setAttribute( 0021 * Flooer_Db::ATTR_STATEMENT_CLASS, 0022 * array('Flooer_Db_Statement') 0023 * ); 0024 * $statement = $db->prepare('SELECT * FROM TableName'); 0025 * $statement->execute(); 0026 * $rowset = $statement->fetchAll(); 0027 */ 0028 0029 /** 0030 * Statement class of SQL database abstraction layer 0031 * 0032 * @category Flooer 0033 * @package Flooer_Db 0034 * @subpackage Statement 0035 * @author Akira Ohgaki <akiraohgaki@gmail.com> 0036 */ 0037 class Flooer_Db_Statement extends PDOStatement 0038 { 0039 }