원문 : 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 |