* @package Mammut\DB\Sql */ interface iSql { /** * Converts the element to an SQL string * * @param iDialect $dialect * the dialect which should be used * @return string the SQL statement */ public function getSql(iDialect $dialect = null); }