1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-13 17:44:11 +02:00

Changed New BSD License to "dibi license"

This commit is contained in:
David Grudl
2007-10-30 00:58:15 +00:00
parent 330930fb34
commit 6856ace01e
16 changed files with 289 additions and 106 deletions

View File

@@ -1,14 +1,22 @@
<?php
/**
* This file is part of the "dibi" project (http://php7.org/dibi/)
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
*
* Copyright (c) 2005, 2007 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.
*
* For more information please see http://php7.org/dibi/
*
* @author David Grudl
* @copyright Copyright (c) 2005-2007 David Grudl aka -dgx- (http://www.dgx.cz)
* @license New BSD License
* @version $Revision$ $Date$
* @copyright Copyright (c) 2005, 2007 David Grudl
* @license http://php7.org/dibi/license (dibi license)
* @category Database
* @package Dibi
* @link http://php7.org/dibi/
*/
@@ -16,6 +24,7 @@
/**
* dibi Common Driver
*
* @version $Revision$ $Date$
*/
abstract class DibiDriver
{

View File

@@ -1,20 +1,30 @@
<?php
/**
* This file is part of the "dibi" project (http://php7.org/dibi/)
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
*
* Copyright (c) 2005, 2007 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.
*
* For more information please see http://php7.org/dibi/
*
* @author David Grudl
* @copyright Copyright (c) 2005-2007 David Grudl aka -dgx- (http://www.dgx.cz)
* @license New BSD License
* @version $Revision$ $Date$
* @copyright Copyright (c) 2005, 2007 David Grudl
* @license http://php7.org/dibi/license (dibi license)
* @category Database
* @package Dibi
* @link http://php7.org/dibi/
*/
/**
* dibi common exception
*
* @version $Revision$ $Date$
*/
class DibiException extends Exception
{

View File

@@ -1,20 +1,30 @@
<?php
/**
* This file is part of the "dibi" project (http://php7.org/dibi/)
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
*
* Copyright (c) 2005, 2007 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.
*
* For more information please see http://php7.org/dibi/
*
* @author David Grudl
* @copyright Copyright (c) 2005-2007 David Grudl aka -dgx- (http://www.dgx.cz)
* @license New BSD License
* @version $Revision$ $Date$
* @copyright Copyright (c) 2005, 2007 David Grudl
* @license http://php7.org/dibi/license (dibi license)
* @category Database
* @package Dibi
* @link http://php7.org/dibi/
*/
/**
* dibi basic logger & profiler
*
* @version $Revision$ $Date$
*/
final class DibiLogger
{

View File

@@ -1,14 +1,22 @@
<?php
/**
* This file is part of the "dibi" project (http://php7.org/dibi/)
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
*
* Copyright (c) 2005, 2007 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.
*
* For more information please see http://php7.org/dibi/
*
* @author David Grudl
* @copyright Copyright (c) 2005-2007 David Grudl aka -dgx- (http://www.dgx.cz)
* @license New BSD License
* @version $Revision$ $Date$
* @copyright Copyright (c) 2005, 2007 David Grudl
* @license http://php7.org/dibi/license (dibi license)
* @category Database
* @package Dibi
* @link http://php7.org/dibi/
*/
@@ -34,6 +42,8 @@ if (!interface_exists('Countable', FALSE)) {
* $assoc = $result->fetchAssoc('active', 'id');
* unset($result);
* </code>
*
* @version $Revision$ $Date$
*/
abstract class DibiResult implements IteratorAggregate, Countable
{

View File

@@ -1,14 +1,22 @@
<?php
/**
* This file is part of the "dibi" project (http://php7.org/dibi/)
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
*
* Copyright (c) 2005, 2007 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.
*
* For more information please see http://php7.org/dibi/
*
* @author David Grudl
* @copyright Copyright (c) 2005-2007 David Grudl aka -dgx- (http://www.dgx.cz)
* @license New BSD License
* @version $Revision$ $Date$
* @copyright Copyright (c) 2005, 2007 David Grudl
* @license http://php7.org/dibi/license (dibi license)
* @category Database
* @package Dibi
* @link http://php7.org/dibi/
*/
@@ -16,6 +24,7 @@
/**
* dibi translator
*
* @version $Revision$ $Date$
*/
final class DibiTranslator
{