상세 컨텐츠

본문 제목

PHP 5를 이용한 오라클 연결

개발

by 동동주1123 2009. 6. 12. 17:23

본문

원문 : http://www.oracle.com/technology/global/kr/pub/articles/hull_asp.html


PHP 5를 이용한 오라클 연결

PHP 5에서 오라클로 연결하기 위한 오라클 “connect/disconnect” 루틴을 이용하는 PHP 5 클래스의 예가 아래와 같습니다 (ODBC 드라이버, 제너릭 데이터베이스 인터페이스 또한 사용이 가능합니다.)

class oracle_object {
protected $theDB;
protected $user;
protected $pass;
protected $db;

function __construct($u, $p, $d) {
$this->user = $u;
$this->pass = $p;
$this->db = $d;
}

function db_open () {
$theDB = @OCILogon($this->user, $this->pass, $this->db);
db_check_errors($php_errormsg);
}

function db_close() {
@OCILogoff($theDB);
db_check_errors($php_errormsg);
}

function __destruct () {
print ("so long...");
}

}

'개발' 카테고리의 다른 글

Flex(플렉스) 유용한 사이트 모음  (0) 2009.06.29
php 예외처리  (0) 2009.06.10
PHP DB에 문자열 넣을경우  (0) 2009.04.21

관련글 더보기