1
0
mirror of https://github.com/dg/dibi.git synced 2025-09-01 02:01:48 +02:00

- DibiResult: meta type Dibi::FIELD_BOOL resolves 'f' and 'F' as FALSE

This commit is contained in:
David Grudl
2008-01-02 05:25:21 +00:00
parent 041f059408
commit de4a882788
23 changed files with 80 additions and 76 deletions

View File

@@ -4,7 +4,7 @@
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
*
* Copyright (c) 2005, 2007 David Grudl aka -dgx- (http://www.dgx.cz)
* Copyright (c) 2005, 2008 David Grudl aka -dgx- (http://www.dgx.cz)
*
* This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt.
@@ -12,7 +12,7 @@
* For more information please see http://dibiphp.com/
*
* @author David Grudl
* @copyright Copyright (c) 2005, 2007 David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl
* @license http://dibiphp.com/license dibi license
* @version 0.9 (Revision: $WCREV$, Date: $WCDATE$)
* @link http://dibiphp.com/
@@ -31,18 +31,18 @@ if (version_compare(PHP_VERSION , '5.1.0', '<')) {
// nette libraries
if (!class_exists('NObject', FALSE)) { require_once __FILE__ . '/../libs/NObject.php'; }
if (!class_exists('NException', FALSE)) { require_once __FILE__ . '/../libs/NException.php'; }
if (!class_exists('NObject', FALSE)) { require_once dirname(__FILE__) . '/libs/NObject.php'; }
if (!class_exists('NException', FALSE)) { require_once dirname(__FILE__) . '/libs/NException.php'; }
// dibi libraries
require_once __FILE__ . '/../libs/DibiException.php';
require_once __FILE__ . '/../libs/DibiConnection.php';
require_once __FILE__ . '/../libs/DibiDriverInterface.php';
require_once __FILE__ . '/../libs/DibiResult.php';
require_once __FILE__ . '/../libs/DibiResultIterator.php';
require_once __FILE__ . '/../libs/DibiTranslator.php';
require_once __FILE__ . '/../libs/DibiLogger.php';
require_once __FILE__ . '/../libs/DibiVariable.php';
require_once dirname(__FILE__) . '/libs/DibiException.php';
require_once dirname(__FILE__) . '/libs/DibiConnection.php';
require_once dirname(__FILE__) . '/libs/DibiDriverInterface.php';
require_once dirname(__FILE__) . '/libs/DibiResult.php';
require_once dirname(__FILE__) . '/libs/DibiResultIterator.php';
require_once dirname(__FILE__) . '/libs/DibiTranslator.php';
require_once dirname(__FILE__) . '/libs/DibiLogger.php';
require_once dirname(__FILE__) . '/libs/DibiVariable.php';
@@ -55,7 +55,7 @@ require_once __FILE__ . '/../libs/DibiVariable.php';
* store connections info.
*
* @author David Grudl
* @copyright Copyright (c) 2005, 2007 David Grudl
* @copyright Copyright (c) 2005, 2008 David Grudl
* @package dibi
* @version $Revision$ $Date$
*/
@@ -142,7 +142,7 @@ class dibi
/**
* static class
* Static class - cannot be instantiated
*/
final public function __construct()
{