SqlQuery.php

浏览该文件的文档。
00001 <?php
00003 // FleaPHP Framework
00004 //
00005 // Copyright (c) 2005 - 2008 QeeYuan China Inc. (http://www.qeeyuan.com)
00006 //
00007 // 许可协议,请查看源代码中附带的 LICENSE.txt 文件,
00008 // 或者访问 http://www.fleaphp.org/ 获得详细信息。
00010 
00027 class FLEA_Db_Exception_SqlQuery extends FLEA_Exception
00028 {
00034     var $sql;
00035 
00045     function FLEA_Db_Exception_SqlQuery($sql, $msg = 0, $code = 0)
00046     {
00047         $this->sql = $sql;
00048         if ($msg) {
00049             $code = 0x06ff005;
00050             $msg = sprintf(_ET($code), $msg, $sql, $code);
00051         } else {
00052             $code = 0x06ff006;
00053             $msg = sprintf(_ET($code), $sql, $code);
00054         }
00055         parent::FLEA_Exception($msg, $code);
00056     }
00057 }

Generated at Sat Feb 2 15:18:51 2008 for FleaPHP by  doxygen 1.5.3