Source for file DataBaseDriver.php

Documentation is available at DataBaseDriver.php

  1. <?php
  2. /*
  3. * This file is part of Sylar.
  4. *
  5. * Sylar is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * Sylar is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public License
  16. * along with Sylar. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * @copyright Copyright Sylar Development Team
  19. * @license http://www.gnu.org/licenses/ GNU Public License V2.0
  20. * @see https://launchpad.net/sylar/
  21. * @see http://www.giano-solutions.com
  22. */
  23.  
  24. /**
  25. * Interfaccia DataBase
  26. * Interfaccia per la classe DataBase standard.
  27. *
  28. * @package Sylar
  29. * @version 1.0
  30. * @since 16/feb/08
  31. * @author Gianluca Giusti [brdp] <g.giusti@giano-solutions.com>
  32. * @copyright Sylar Development Team
  33. */
  34. Interface Sylar_DataBaseDriver{
  35. public function setConnectionInfo(Sylar_DataBaseConfiguration $dbConf);
  36. public function isConnected ();
  37. public function connect();
  38. public function disconnect();
  39. public function execQuery($query);
  40. public function execSmartQuery($query);
  41. public function getLastId();
  42. public function affectedRow();
  43. public function readField($numero_riga, $nome_campo);
  44. public function fetchArrayByName();
  45. public function fetchArrayByNum();
  46. public function resultRows();
  47. public function quoteString($string);
  48. ?>

Documentation generated on Thu, 24 Apr 2008 16:14:13 +0200 by phpDocumentor 1.3.0RC3