sqlite_open의 인자가 reference를 받도록 설정되어 있는 이상 caller 측에서 reference화하지 않아도 됩니다.

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3924 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
wdlee91 2008-03-11 00:36:11 +00:00
parent 27f9fc638f
commit 6eb6abcc1e

View file

@ -66,7 +66,7 @@
if(!$this->database) return;
// 데이터 베이스 파일 접속 시도
$this->fd = sqlite_open($this->database, 0666, &$error);
$this->fd = sqlite_open($this->database, 0666, $error);
if(!file_exists($this->database) || $error) {
$this->setError(-1,$error);
$this->is_connected = false;