mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
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:
parent
27f9fc638f
commit
6eb6abcc1e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue