gyro/core/lib/interfaces/idbsqlbuilder.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Something that creates an SQL string 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface IDBSqlBuilder { 00009 /** 00010 * Return SQL fragment 00011 * 00012 * @return string 00013 */ 00014 public function get_sql(); 00015 }