MDB_QueryTool
[ class tree: MDB_QueryTool ] [ index: MDB_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: Lorenzo Alberton <l.alberton at quipo.it>                    |
  16. // +----------------------------------------------------------------------+
  17. //
  18. // $Id: QueryTool.php,v 1.5 2004/04/06 12:53:39 quipo Exp $
  19. //
  20. // This is just a port of DB_QueryTool, originally written by
  21. // Wolfram Kriesing and Paolo Panto, vision:produktion <wk@visionp.de>
  22. // All the praises go to them :)
  23. //
  24. require_once 'MDB/QueryTool/EasyJoin.php';
  25.  
  26.  
  27. /**
  28.  *   this class should be extended
  29.  *   This class is here to make it easy using the base
  30.  *   class of the package by it's package name.
  31.  *   Since I tried to seperate the functionality a bit inside the
  32.  *   really working classes i decided to have this class here just to
  33.  *   provide the name, since the functionality inside the other
  34.  *   classes might be restructured a bit but this name always stays.
  35.  *
  36.  *   @package    MDB_QueryTool
  37.  *   @version    2002/04/02
  38.  *   @access     public
  39.  *   @author     Lorenzo Alberton <l.alberton at quipo.it>
  40.  */
  41. {
  42.     // {{{ MDB_QueryTool()
  43.  
  44.     /**
  45.      * call parent constructor
  46.      * @param mixed $dsn DSN string, DSN array or MDB object
  47.      * @param array $options 
  48.      */
  49.     function MDB_QueryTool($dsn=false$options=array())
  50.     {
  51.         parent::__construct($dsn$options);
  52.     }
  53.  
  54.     // }}}
  55. }
  56. ?>

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