|
|
@@ -341,10 +341,8 @@ class DboSource extends DataSource {
|
|
|
switch ($column) {
|
|
|
case 'binary':
|
|
|
return $this->_connection->quote($data, PDO::PARAM_LOB);
|
|
|
- break;
|
|
|
case 'boolean':
|
|
|
return $this->_connection->quote($this->boolean($data, true), PDO::PARAM_BOOL);
|
|
|
- break;
|
|
|
case 'string':
|
|
|
case 'text':
|
|
|
return $this->_connection->quote($data, PDO::PARAM_STR);
|
|
|
@@ -362,7 +360,6 @@ class DboSource extends DataSource {
|
|
|
return $data;
|
|
|
}
|
|
|
return $this->_connection->quote($data);
|
|
|
- break;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -2029,7 +2026,6 @@ class DboSource extends DataSource {
|
|
|
$arg = $this->name($params[0]);
|
|
|
}
|
|
|
return strtoupper($func) . '(' . $arg . ') AS ' . $this->name($params[1]);
|
|
|
- break;
|
|
|
}
|
|
|
}
|
|
|
|