* @copyright 2010-2014 Justin Swanhart and André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * @version SVN: $Id: SetBuilder.php 830 2013-12-18 09:35:42Z phosco@gmx.de $ * */ require_once dirname(__FILE__) . '/../exceptions/UnableToCreateSQLException.php'; require_once dirname(__FILE__) . '/SetExpressionBuilder.php'; /** * This class implements the builder for the SET part of INSERT statement. * You can overwrite all functions to achieve another handling. * * @author André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * */ class SetBuilder { protected function buildSetExpression($parsed) { $builder = new SetExpressionBuilder(); return $builder->build($parsed); } public function build($parsed) { $sql = ""; foreach ($parsed as $k => $v) { $len = strlen($sql); $sql .= $this->buildSetExpression($v); if ($len == strlen($sql)) { throw new UnableToCreateSQLException('SET', $k, $v, 'expr_type'); } $sql .= ","; } return "SET " . substr($sql, 0, -1); } } ?>