rewrite rul에 m.layouts 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7850 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2010-11-18 02:12:21 +00:00
parent 4f0ddc76fa
commit 176f66d88b
7 changed files with 17 additions and 9 deletions

View file

@ -187,13 +187,18 @@
// 쿼리 문 실행
$result = @cubrid_execute ($this->fd, $query);
//if(!$result){ debugPrint('result null: ' .$query); }
if(!$result){
debugPrint('result null: ' .$query);
debugPrint($this->source_args);
}
// 오류 체크
if (cubrid_error_code ()) {
$code = cubrid_error_code ();
$msg = cubrid_error_msg ();
//debugPrint('query error : '. $code.', msg:'. $msg .', ' .$query);
debugPrint('query error : '. $code.', msg:'. $msg .', ' .$query);
debugPrint($this->source_args);
$this->setError ($code, $msg);
}