mirror of
https://github.com/dg/dibi.git
synced 2025-08-07 06:36:44 +02:00
simplified phpDoc comments
This commit is contained in:
@@ -1,13 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Nette Framework
|
* This file is part of the Nette Framework.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2004, 2010 David Grudl
|
* Copyright (c) 2004, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://nette.org/license Nette license
|
*
|
||||||
* @link http://nette.org
|
* This source file is subject to the "Nette license", and/or
|
||||||
* @category Nette
|
* GPL license. For more information please see http://nette.org
|
||||||
* @package Nette
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// no namespace
|
// no namespace
|
||||||
@@ -17,7 +16,7 @@
|
|||||||
/**
|
/**
|
||||||
* DateTime with serialization and timestamp support for PHP 5.2.
|
* DateTime with serialization and timestamp support for PHP 5.2.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2004, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package Nette
|
* @package Nette
|
||||||
*/
|
*/
|
||||||
class DateTime53 extends DateTime
|
class DateTime53 extends DateTime
|
||||||
|
@@ -1,19 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* dibi - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
*
|
*
|
||||||
* This source file is subject to the "dibi license" that is bundled
|
* This source file is subject to the "dibi license", and/or
|
||||||
* with this package in the file license.txt, and/or GPL license.
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
*
|
|
||||||
* For more information please see http://dibiphp.com
|
|
||||||
*
|
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
|
||||||
* @license http://dibiphp.com/license dibi license
|
|
||||||
* @link http://dibiphp.com
|
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -110,8 +103,7 @@ require_once dirname(__FILE__) . '/libs/DibiProfiler.php';
|
|||||||
* This class is static container class for creating DB objects and
|
* This class is static container class for creating DB objects and
|
||||||
* store connections info.
|
* store connections info.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
class dibi
|
class dibi
|
||||||
{
|
{
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -24,7 +24,6 @@
|
|||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @author Tomáš Kraina, Roman Sklenář
|
* @author Tomáš Kraina, Roman Sklenář
|
||||||
* @copyright Copyright (c) 2010
|
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
* - resource (resource) => existing connection resource
|
* - resource (resource) => existing connection resource
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
* - resource (resource) => existing connection resource
|
* - resource (resource) => existing connection resource
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -32,7 +32,7 @@ require_once dirname(__FILE__) . '/mysql.reflector.php';
|
|||||||
* - resource (resource) => existing connection resource
|
* - resource (resource) => existing connection resource
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
/**
|
/**
|
||||||
* The dibi reflector for MySQL databases.
|
* The dibi reflector for MySQL databases.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -33,7 +33,7 @@ require_once dirname(__FILE__) . '/mysql.reflector.php';
|
|||||||
* - resource (mysqli) => existing connection resource
|
* - resource (mysqli) => existing connection resource
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
* - resource (resource) => existing connection resource
|
* - resource (resource) => existing connection resource
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
* - resource (resource) => existing connection resource
|
* - resource (resource) => existing connection resource
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
* - resource (PDO) => existing connection
|
* - resource (PDO) => existing connection
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
* - resource (resource) => existing connection resource
|
* - resource (resource) => existing connection resource
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -28,7 +28,7 @@ require_once dirname(__FILE__) . '/sqlite.reflector.php';
|
|||||||
* - resource (resource) => existing connection resource
|
* - resource (resource) => existing connection resource
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
/**
|
/**
|
||||||
* The dibi reflector for SQLite database.
|
* The dibi reflector for SQLite database.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -26,7 +26,7 @@ require_once dirname(__FILE__) . '/sqlite.reflector.php';
|
|||||||
* - resource (SQLite3) => existing connection resource
|
* - resource (SQLite3) => existing connection resource
|
||||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi\drivers
|
* @package dibi\drivers
|
||||||
*/
|
*/
|
||||||
class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDriver
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,8 +15,7 @@
|
|||||||
/**
|
/**
|
||||||
* dibi connection.
|
* dibi connection.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*
|
*
|
||||||
* @property-read bool $connected
|
* @property-read bool $connected
|
||||||
* @property-read mixed $config
|
* @property-read mixed $config
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,8 +15,7 @@
|
|||||||
/**
|
/**
|
||||||
* Default implementation of IDataSource for dibi.
|
* Default implementation of IDataSource for dibi.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*
|
*
|
||||||
* @property-read DibiConnection $connection
|
* @property-read DibiConnection $connection
|
||||||
* @property-read DibiResult $result
|
* @property-read DibiResult $result
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,8 +15,7 @@
|
|||||||
/**
|
/**
|
||||||
* Reflection metadata class for a database.
|
* Reflection metadata class for a database.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*
|
*
|
||||||
* @property-read string $name
|
* @property-read string $name
|
||||||
* @property-read array $tables
|
* @property-read array $tables
|
||||||
@@ -132,8 +131,7 @@ class DibiDatabaseInfo extends DibiObject
|
|||||||
/**
|
/**
|
||||||
* Reflection metadata class for a database table.
|
* Reflection metadata class for a database table.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*
|
*
|
||||||
* @property-read string $name
|
* @property-read string $name
|
||||||
* @property-read bool $view
|
* @property-read bool $view
|
||||||
@@ -341,8 +339,7 @@ class DibiTableInfo extends DibiObject
|
|||||||
/**
|
/**
|
||||||
* Reflection metadata class for a result set.
|
* Reflection metadata class for a result set.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*
|
*
|
||||||
* @property-read array $columns
|
* @property-read array $columns
|
||||||
* @property-read array $columnNames
|
* @property-read array $columnNames
|
||||||
@@ -448,8 +445,7 @@ class DibiResultInfo extends DibiObject
|
|||||||
/**
|
/**
|
||||||
* Reflection metadata class for a table or result set column.
|
* Reflection metadata class for a table or result set column.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*
|
*
|
||||||
* @property-read string $name
|
* @property-read string $name
|
||||||
* @property-read string $fullName
|
* @property-read string $fullName
|
||||||
@@ -655,8 +651,7 @@ class DibiColumnInfo extends DibiObject
|
|||||||
/**
|
/**
|
||||||
* Reflection metadata class for a foreign key.
|
* Reflection metadata class for a foreign key.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
* @todo
|
* @todo
|
||||||
*
|
*
|
||||||
* @property-read string $name
|
* @property-read string $name
|
||||||
@@ -706,8 +701,7 @@ class DibiForeignKeyInfo extends DibiObject
|
|||||||
/**
|
/**
|
||||||
* Reflection metadata class for a index or primary key.
|
* Reflection metadata class for a index or primary key.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*
|
*
|
||||||
* @property-read string $name
|
* @property-read string $name
|
||||||
* @property-read array $columns
|
* @property-read array $columns
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,8 +15,7 @@
|
|||||||
/**
|
/**
|
||||||
* dibi common exception.
|
* dibi common exception.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
class DibiException extends Exception implements IDebugPanel
|
class DibiException extends Exception implements IDebugPanel
|
||||||
{
|
{
|
||||||
@@ -102,8 +101,7 @@ class DibiException extends Exception implements IDebugPanel
|
|||||||
/**
|
/**
|
||||||
* database server exception.
|
* database server exception.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
class DibiDriverException extends DibiException
|
class DibiDriverException extends DibiException
|
||||||
{
|
{
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,8 +15,7 @@
|
|||||||
/**
|
/**
|
||||||
* dibi SQL builder via fluent interfaces. EXPERIMENTAL!
|
* dibi SQL builder via fluent interfaces. EXPERIMENTAL!
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*
|
*
|
||||||
* @property-read string $command
|
* @property-read string $command
|
||||||
* @property-read DibiConnection $connection
|
* @property-read DibiConnection $connection
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,8 +15,7 @@
|
|||||||
/**#@+
|
/**#@+
|
||||||
* Lazy cached storage.
|
* Lazy cached storage.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
* @internal
|
* @internal
|
||||||
*/
|
*/
|
||||||
abstract class DibiLazyStorageBase
|
abstract class DibiLazyStorageBase
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -50,8 +50,7 @@
|
|||||||
* $obj->newMethod($x);
|
* $obj->newMethod($x);
|
||||||
* </code>
|
* </code>
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
abstract class DibiObject
|
abstract class DibiObject
|
||||||
{
|
{
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -19,8 +19,7 @@
|
|||||||
* - 'explain' - explain SELECT queries?
|
* - 'explain' - explain SELECT queries?
|
||||||
* - 'filter' - which queries to log?
|
* - 'filter' - which queries to log?
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
class DibiProfiler extends DibiObject implements IDibiProfiler, IDebugPanel
|
class DibiProfiler extends DibiObject implements IDibiProfiler, IDebugPanel
|
||||||
{
|
{
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -28,8 +28,7 @@
|
|||||||
* unset($result);
|
* unset($result);
|
||||||
* </code>
|
* </code>
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*
|
*
|
||||||
* @property-read mixed $resource
|
* @property-read mixed $resource
|
||||||
* @property-read IDibiResultDriver $driver
|
* @property-read IDibiResultDriver $driver
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -24,8 +24,7 @@
|
|||||||
* unset($result);
|
* unset($result);
|
||||||
* </code>
|
* </code>
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
class DibiResultIterator implements Iterator, Countable
|
class DibiResultIterator implements Iterator, Countable
|
||||||
{
|
{
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,8 +15,7 @@
|
|||||||
/**
|
/**
|
||||||
* Result set single row.
|
* Result set single row.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
class DibiRow implements ArrayAccess, IteratorAggregate, Countable
|
class DibiRow implements ArrayAccess, IteratorAggregate, Countable
|
||||||
{
|
{
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -15,8 +15,7 @@
|
|||||||
/**
|
/**
|
||||||
* dibi SQL translator.
|
* dibi SQL translator.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
final class DibiTranslator extends DibiObject
|
final class DibiTranslator extends DibiObject
|
||||||
{
|
{
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* dibi - tiny'n'smart database abstraction layer
|
* This file is part of the "dibi" - smart database abstraction layer.
|
||||||
* ----------------------------------------------
|
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
|
||||||
* @license http://dibiphp.com/license dibi license
|
*
|
||||||
* @link http://dibiphp.com
|
* This source file is subject to the "dibi license", and/or
|
||||||
|
* GPL license. For more information please see http://dibiphp.com
|
||||||
* @package dibi
|
* @package dibi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -80,8 +80,7 @@ interface IDibiProfiler
|
|||||||
/**
|
/**
|
||||||
* dibi driver interface.
|
* dibi driver interface.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
interface IDibiDriver
|
interface IDibiDriver
|
||||||
{
|
{
|
||||||
@@ -192,8 +191,7 @@ interface IDibiDriver
|
|||||||
/**
|
/**
|
||||||
* dibi result set driver interface.
|
* dibi result set driver interface.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
interface IDibiResultDriver
|
interface IDibiResultDriver
|
||||||
{
|
{
|
||||||
@@ -257,8 +255,7 @@ interface IDibiResultDriver
|
|||||||
/**
|
/**
|
||||||
* dibi driver reflection.
|
* dibi driver reflection.
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2005, 2010 David Grudl
|
* @author David Grudl
|
||||||
* @package dibi
|
|
||||||
*/
|
*/
|
||||||
interface IDibiReflector
|
interface IDibiReflector
|
||||||
{
|
{
|
||||||
|
@@ -1,19 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Nette Framework
|
* This file is part of the Nette Framework.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2004, 2010 David Grudl (http://davidgrudl.com)
|
* Copyright (c) 2004, 2010 David Grudl (http://davidgrudl.com)
|
||||||
*
|
*
|
||||||
* This source file is subject to the "Nette license" that is bundled
|
* This source file is subject to the "Nette license", and/or
|
||||||
* with this package in the file license.txt, and/or GPL license.
|
* GPL license. For more information please see http://nette.org
|
||||||
*
|
|
||||||
* For more information please see http://nette.org
|
|
||||||
*
|
|
||||||
* @copyright Copyright (c) 2004, 2010 David Grudl
|
|
||||||
* @license http://nette.org/license Nette license
|
|
||||||
* @link http://nette.org
|
|
||||||
* @category Nette
|
|
||||||
* @package Nette
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
final
|
final
|
||||||
|
Reference in New Issue
Block a user