gyro/core/model/base/sqlbuilder/dbsqlbuilder.replace.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Build a replace query 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Model 00007 */ 00008 class DBSqlBuilderReplace extends DBSqlBuilderBase { 00009 /** 00010 * Return SQL fragment 00011 * 00012 * @return string 00013 */ 00014 public function get_sql() { 00015 throw new Exception('Replace is not supported for this kind of database'); 00016 } 00017 }