Subversion Repositories Applications.papyrus

Rev

Rev 320 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 320 Rev 443
Line 18... Line 18...
18
 * @author     Stig Bakken <ssb@php.net>
18
 * @author     Stig Bakken <ssb@php.net>
19
 * @author     Tomas V.V.Cox <cox@idecnet.com>
19
 * @author     Tomas V.V.Cox <cox@idecnet.com>
20
 * @author     Daniel Convissor <danielc@php.net>
20
 * @author     Daniel Convissor <danielc@php.net>
21
 * @copyright  1997-2005 The PHP Group
21
 * @copyright  1997-2005 The PHP Group
22
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
22
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
23
 * @version    CVS: $Id: DB.php,v 1.1 2005-03-30 08:50:19 jpm Exp $
23
 * @version    CVS: $Id: DB.php,v 1.2 2005-09-20 17:01:22 ddelon Exp $
24
 * @link       http://pear.php.net/package/DB
24
 * @link       http://pear.php.net/package/DB
25
 */
25
 */
Line 26... Line 26...
26
 
26
 
27
/**
27
/**
Line 424... Line 424...
424
 * @author     Stig Bakken <ssb@php.net>
424
 * @author     Stig Bakken <ssb@php.net>
425
 * @author     Tomas V.V.Cox <cox@idecnet.com>
425
 * @author     Tomas V.V.Cox <cox@idecnet.com>
426
 * @author     Daniel Convissor <danielc@php.net>
426
 * @author     Daniel Convissor <danielc@php.net>
427
 * @copyright  1997-2005 The PHP Group
427
 * @copyright  1997-2005 The PHP Group
428
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
428
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
429
 * @version    Release: 1.7.5
429
 * @version    Release: @package_version@
430
 * @link       http://pear.php.net/package/DB
430
 * @link       http://pear.php.net/package/DB
431
 */
431
 */
432
class DB
432
class DB
433
{
433
{
434
    // {{{ &factory()
434
    // {{{ &factory()
Line 570... Line 570...
570
     *
570
     *
571
     * @return string  the DB API version number
571
     * @return string  the DB API version number
572
     */
572
     */
573
    function apiVersion()
573
    function apiVersion()
574
    {
574
    {
575
        return '1.7.5';
575
        return '@package_version@';
576
    }
576
    }
Line 577... Line 577...
577
 
577
 
578
    // }}}
578
    // }}}
Line 860... Line 860...
860
 * @category   Database
860
 * @category   Database
861
 * @package    DB
861
 * @package    DB
862
 * @author     Stig Bakken <ssb@php.net>
862
 * @author     Stig Bakken <ssb@php.net>
863
 * @copyright  1997-2005 The PHP Group
863
 * @copyright  1997-2005 The PHP Group
864
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
864
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
865
 * @version    Release: 1.7.5
865
 * @version    Release: @package_version@
866
 * @link       http://pear.php.net/package/DB
866
 * @link       http://pear.php.net/package/DB
867
 */
867
 */
868
class DB_Error extends PEAR_Error
868
class DB_Error extends PEAR_Error
869
{
869
{
870
    // {{{ constructor
870
    // {{{ constructor
Line 907... Line 907...
907
 * @category   Database
907
 * @category   Database
908
 * @package    DB
908
 * @package    DB
909
 * @author     Stig Bakken <ssb@php.net>
909
 * @author     Stig Bakken <ssb@php.net>
910
 * @copyright  1997-2005 The PHP Group
910
 * @copyright  1997-2005 The PHP Group
911
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
911
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
912
 * @version    Release: 1.7.5
912
 * @version    Release: @package_version@
913
 * @link       http://pear.php.net/package/DB
913
 * @link       http://pear.php.net/package/DB
914
 */
914
 */
915
class DB_result
915
class DB_result
916
{
916
{
917
    // {{{ properties
917
    // {{{ properties
Line 1349... Line 1349...
1349
 * @category   Database
1349
 * @category   Database
1350
 * @package    DB
1350
 * @package    DB
1351
 * @author     Stig Bakken <ssb@php.net>
1351
 * @author     Stig Bakken <ssb@php.net>
1352
 * @copyright  1997-2005 The PHP Group
1352
 * @copyright  1997-2005 The PHP Group
1353
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
1353
 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
1354
 * @version    Release: 1.7.5
1354
 * @version    Release: @package_version@
1355
 * @link       http://pear.php.net/package/DB
1355
 * @link       http://pear.php.net/package/DB
1356
 * @see        DB_common::setFetchMode()
1356
 * @see        DB_common::setFetchMode()
1357
 */
1357
 */
1358
class DB_row
1358
class DB_row
1359
{
1359
{