New onsite patient portal, take 4.
[openemr.git] / portal / patient / fwk / libs / verysimple / DB / ISqlFunction.php
blob153e3aa19369847d12210d58ae77814bba4f22d8
1 <?php
2 /** @package verysimple::Phreeze */
4 /**
5 * import supporting libraries
6 */
8 /**
9 * ISqlFunction is an interface that defines a SQL function.
10 * This can be used
11 * to insert/update or query a database with a value that is not quoted,
12 * for example sysdate().
14 * @package verysimple::Phreeze
15 * @author VerySimple Inc.
16 * @copyright 1997-2007 VerySimple, Inc.
17 * @license http://www.gnu.org/licenses/lgpl.html LGPL
18 * @version 2.0
20 interface ISqlFunction {
21 /**
22 * Return the quoted SQL that will be used for the insert/update/select
24 * @param
25 * Phreezer
26 * @return string
28 public function GetQuotedSql($phreezer);