ISqlFunction.php 649 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /** @package verysimple::Phreeze */
  3. /** import supporting libraries */
  4. /**
  5. * ISqlFunction is an interface that defines a SQL function. This can be used
  6. * to insert/update or query a database with a value that is not quoted,
  7. * for example sysdate().
  8. * @package verysimple::Phreeze
  9. * @author VerySimple Inc.
  10. * @copyright 1997-2007 VerySimple, Inc.
  11. * @license http://www.gnu.org/licenses/lgpl.html LGPL
  12. * @version 2.0
  13. */
  14. interface ISqlFunction
  15. {
  16. /**
  17. * Return the quoted SQL that will be used for the insert/update/select
  18. * @param Phreezer
  19. * @return string
  20. */
  21. public function GetQuotedSql($phreezer);
  22. }
  23. ?>