DB_QueryTool
[ class tree: DB_QueryTool ] [ index: DB_QueryTool ] [ all elements ]

Source for file QueryTool.php

Documentation is available at QueryTool.php

  1. <?php
  2. // +----------------------------------------------------------------------+
  3. // | PHP Version 4                                                        |
  4. // +----------------------------------------------------------------------+
  5. // | Copyright (c) 1997-2003 The PHP Group                                |
  6. // +----------------------------------------------------------------------+
  7. // | This source file is subject to version 2.02 of the PHP license,      |
  8. // | that is bundled with this package in the file LICENSE, and is        |
  9. // | available at through the world-wide-web at                           |
  10. // | http://www.php.net/license/2_02.txt.                                 |
  11. // | If you did not receive a copy of the PHP license and are unable to   |
  12. // | obtain it through the world-wide-web, please send a note to          |
  13. // | license@php.net so we can mail you a copy immediately.               |
  14. // +----------------------------------------------------------------------+
  15. // | Author:  Wolfram Kriesing, Paolo Panto, vision:produktion <wk@visionp.de>
  16. // +----------------------------------------------------------------------+
  17. //
  18. // $Id: QueryTool.php,v 1.3 2004/04/06 12:25:42 quipo Exp $
  19. //
  20.  
  21. require_once 'DB/QueryTool/EasyJoin.php';
  22.  
  23. /**
  24.  * this class should be extended
  25.  * This class is here to make it easy using the base
  26.  * class of the package by it's package name.
  27.  * Since I tried to seperate the functionality a bit inside the
  28.  * really working classes i decided to have this class here just to
  29.  * provide the name, since the functionality inside the other
  30.  * classes might be restructured a bit but this name always stays.
  31.  *
  32.  * @package    DB_QueryTool
  33.  * @version    2002/04/02
  34.  * @access     public
  35.  * @author     Wolfram Kriesing <wk@visionp.de>
  36.  */
  37. {
  38.     // {{{ DB_QueryTool()
  39.  
  40.     /**
  41.      * call parent constructor
  42.      * @param mixed $dsn DSN string, DSN array or DB object
  43.      * @param array $options 
  44.      */
  45.     function DB_QueryTool($dsn=false$options=array())
  46.     {
  47.         parent::__construct($dsn$options);
  48.     }
  49.  
  50.     // }}}
  51. }
  52. ?>

Documentation generated on Mon, 11 Mar 2019 13:57:13 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.