From f5d6af77d61b08f7d44d60bb1e798bdcb4784e03 Mon Sep 17 00:00:00 2001 From: zero Date: Fri, 18 May 2007 08:17:12 +0000 Subject: [PATCH] git-svn-id: http://xe-core.googlecode.com/svn/trunk@1479 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- classes/db/DBSqlite2.class.php | 3 ++- classes/db/DBSqlite3_pdo.class.php | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/classes/db/DBSqlite2.class.php b/classes/db/DBSqlite2.class.php index c557eecfa..18062f2c9 100644 --- a/classes/db/DBSqlite2.class.php +++ b/classes/db/DBSqlite2.class.php @@ -340,7 +340,8 @@ function _executeUpdateAct($output) { // 테이블 정리 foreach($output->tables as $key => $val) { - $table_list[] = '`'.$this->prefix.$key.'` as '.$val; + //$table_list[] = '`'.$this->prefix.$key.'` as '.$val; + $table_list[] = '`'.$this->prefix.$key.'`'; } // 컬럼 정리 diff --git a/classes/db/DBSqlite3_pdo.class.php b/classes/db/DBSqlite3_pdo.class.php index 8a8ba196b..2cc140cf7 100644 --- a/classes/db/DBSqlite3_pdo.class.php +++ b/classes/db/DBSqlite3_pdo.class.php @@ -377,7 +377,8 @@ function _executeUpdateAct($output) { // 테이블 정리 foreach($output->tables as $key => $val) { - $table_list[] = '`'.$this->prefix.$key.'` as '.$val; + //$table_list[] = '`'.$this->prefix.$key.'` as '.$val; + $table_list[] = '`'.$this->prefix.$key.'`'; } // 컬럼 정리