mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
fix Cubrid class
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6713 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a6ffac336c
commit
f22ca47616
1 changed files with 3 additions and 2 deletions
|
|
@ -352,7 +352,7 @@
|
|||
break;
|
||||
}
|
||||
|
||||
if($default && !is_numeric($default)) $default = "'".$default."'";
|
||||
if($default && (!is_numeric($default) || $default[0] == "+")) $default = "'".$default."'";
|
||||
|
||||
$column_schema[] = sprintf('"%s" %s%s %s %s',
|
||||
$name,
|
||||
|
|
@ -488,9 +488,10 @@
|
|||
function _executeUpdateAct($output) {
|
||||
// 테이블 정리
|
||||
foreach($output->tables as $key => $val) {
|
||||
$table_list[] = "\"".$this->prefix.$val."\" as ".$key;
|
||||
$table_list[] = "\"".$this->prefix.$val."\" as \"".$key."\"";
|
||||
}
|
||||
|
||||
|
||||
// 컬럼 정리
|
||||
foreach($output->columns as $key => $val) {
|
||||
if(!isset($val['value'])) continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue