메뉴 건너뛰기

프로그램언어

조회 수 30504 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
주석이 없다.. 나만 쓸려고 만들어 놓은거라서...
관련되서 공부하고자 하는 분들이 있으면 참고하시라...

#DBConn.Class.php
<? 
/*************************************************************** 
프로그램명 : DBConn Class 
작성자 : 윤영식 (2006-02-17 오후 5:07) 
설명 : DataBase Connection Class (Oracle, MySQL) 
***************************************************************/ 

Class DBConn { 

const MYSQL = 1; 
const ORACLE = 2; 

private $connection; 

private $dbType; 
private $dbHost; 
private $dbPort; 
private $dbSID; 
private $dbName; 
private $dbUser; 
private $dbPassword; 
private $dbCharset; 


function __construct($URI) { 

$this->parseURI($URI); 

try { 
$this ->Connection(); 

} catch (Exception $e) { 
echo $e->getMessage(); 

$this->__destruct(); 
} 
} 

function __destruct() { 

if ($this->dbType==MYSQL) { 
@mysql_close($this->connection); 
} else if ($this->dbType==ORACLE) { 
@oci_close($this->connection); 
} 
} 

private function parseURI($URI) { 

$URI = str_replace("#","_sp_",$URI); 
//$mysql_uri = "mysql://localhost:3306/?dbname=meris&username=meris&password=meris&charset=euckr"; 
//$oracle_uri = "oracle://localhost:1521/?sid=ora10g&username=meris&password=meris&charset="; 

$exp = parse_url ($URI); 

if (strtolower($exp[scheme])=="mysql") { 
$this->dbType=MYSQL; 
} else if (strtolower($exp[scheme])=="oracle") { 
$this->dbType=ORACLE; 
} 

$this->dbHost = $exp[host]; 
$this->dbPort = $exp[port]; 

parse_str($exp[query]); 

$this->dbSID = str_replace("_sp_","#",$dbsid); 
$this->dbName = str_replace("_sp_","#",$dbname); 
$this->dbUser = str_replace("_sp_","#",$username); 
$this->dbPassword = str_replace("_sp_","#",$password); 
$this->dbCharset = str_replace("_sp_","#",$charset); 
} 

function freeStatement($stmt) { 
if ($this->dbType==MYSQL) { 
@mysql_free_result($stmt); 
} else if ($this->dbType==ORACLE) { 
@oci_free_statement($stmt); 
} 
} 

private function Connection() { 
if ($this->dbType==MYSQL) { 
if (!$this->connection=@mysql_connect($this->dbHost,$this->dbUser,$this->dbPassword)) { 
throw new Exception(mysql_error()); 
} 

if(!mysql_select_db($this->dbName,$this->connection)){ 
throw new exception(mysql_error()); 
} 

if ($this->dbCharset) { 
@mysql_query("set session character_set_connection=".$this->dbCharset.";"); 
@mysql_query("set session character_set_results=".$this->dbCharset.";"); 
@mysql_query("set session character_set_client=".$this->dbCharset.";"); 

} 

} else if ($this->dbType==ORACLE) { 
if (!$this->connection = @oci_connect($this->dbUser,$this->dbPassword,$this->dbSID,$this->dbCharset)) { 
$error = oci_error(); 
throw new Exception($error[message]); 
} 

} else { 
throw new Exception("No such DB Type".$this->dbType); 
} 
} 

function getConnection() { 
return $this->connection; 
} 

function destroyConnection() { 
if ($this->dbType==MYSQL) { 
@mysql_close($this->connection); 
} else if ($this->dbType==ORACLE) { 
@oci_close($this->connection); 
} 
} 

function execute($sql,$flag=OCI_COMMIT_ON_SUCCESS) { 
if ($this->dbType==MYSQL) { 
if (!$stmt = @mysql_query($sql,$this->connection)) { 
echo mysql_error(); 
return false; 
} else { 
return $stmt; 
} 
} else if ($this->dbType==ORACLE) { 
if (!$stmt = @oci_parse($this->connection,$sql)) { 
$error = oci_error($this->connection); 
echo $error[message]; 
return false; 
} 

if (!@oci_execute($stmt,$flag)) { 
$error = oci_error($stmt); 
echo $error[message]; 
return false; 
} else { 
return $stmt; 
} 
} 
} 

function fetchObject(&$obj,$stmt) { 
if ($this->dbType==MYSQL) { 
if ($obj=@mysql_fetch_object($stmt)) { 
return true; 
} 
} else if ($this->dbType==ORACLE) { 

if ($row = @oci_fetch_assoc($stmt)) { 
$rows = Array(); 
while(list($key,$val)=each($row)) { 
$rows[strtolower($key)] = $val; 
} 
$obj = (object)$rows; 
return true; 
} 
} 
return false; 
} 

function fetchAssoc(&$obj,$stmt) { 
if ($this->dbType==MYSQL) { 
if ($obj = @mysql_fetch_assoc($stmt)) { 
return true; 
} 
} else if ($this->dbType==ORACLE) { 
if ($row = @oci_fetch_assoc($stmt)) { 
$obj = Array(); 
while(list($key,$val)=each($row)) { 
$obj[strtolower($key)] = $val; 
} 
return true; 
} 
} 

return false; 
} 

function fetchRow(&$obj,$stmt) { 
if ($this->dbType==MYSQL) { 
if ($obj = @mysql_fetch_row($stmt)) { 
return true; 
} 
} else if ($this->dbType==ORACLE) { 
if ($obj = @oci_fetch_row($stmt)) { 
return true; 
} 
} 

return false; 
} 

function fetchArray(&$obj,$stmt) { 
if ($this->dbType==MYSQL) { 
if ($obj = @mysql_fetch_array($stmt)) { 
return true; 
} 
} else if ($this->dbType==ORACLE) { 

if ($row = @oci_fetch_array($stmt)) { 
$obj = Array(); 
while(list($key,$val)=each($row)) { 
$obj[strtolower($key)] = $val; 
} 
return true; 
} 
} 

return false; 
} 

function commit() { 
if ($this->dbType==ORACLE) { 
return oci_commit($this->connection); 
} else { 
return true; 
} 
} 

function rollback() { 
if ($this->dbType==ORACLE) { 
return oci_rollback($this->connection); 
} else { 
return true; 
} 
} 

function getAffectedRows($obj="") { 
if ($this->dbType==MYSQL) { 
if ($obj=="") { 
return mysql_affected_rows(); 
} else { 
return mysql_affected_rows($obj); 
} 
} 

return false; 
} 

function getNumRows($stmt) { 
if ($this->dbType==MYSQL) { 
return mysql_num_rows($stmt); 
} 
return false; 
} 

## 계속 추가 예정 
} 
?> 


사용방법
Oracle DB 사용시 #oracle.php
<?php 
/*************************************************************** 
프로그램명 : Oracle 예제 
작성자 : 윤영식 (2006-10-18 오후 5:44) 
***************************************************************/ 
$uri = "oracle://localhost:1521/?sid=ora10g&username=meris&password=meris&charset="; 

// Class 호출 
$conn = new DBConn($uri); 

$sql = "SELECT name FROM ttable"; 

// 쿼리 실행 
$stmt = $conn->execute($sql); 

// $obj 오브젝트로 Fetch 
$conn->fetchObject(&$obj,$stmt); 

// $obj->컬럼명 하면 데이터 나옴 
$name = $obj->name; 

$obj=null; 

// Statment Free 
$conn->freeStatement($stmt); 
?> 


MySQL DB 사용시 #mysql.php
<?php 
/*************************************************************** 
프로그램명 : MySQL 예제 
작성자 : 윤영식 (2006-10-18 오후 5:47) 
***************************************************************/ 
$uri = "mysql://localhost:3306/?dbname=meris&username=meris&password=meris&charset=euckr"; 

// Class 호출 
$conn = new DBConn($uri); 

$sql = "SELECT name FROM ttable"; 

// 쿼리 실행 
$stmt = $conn->execute($sql); 

// $obj 오브젝트로 Fetch 
$conn->fetchObject(&$obj,$stmt); 

// $obj->컬럼명 하면 데이터 나옴 
$name = $obj->name; 

$obj=null; 

// Statment Free 
$conn->freeStatement($stmt); 
?> 


눈치 빠른 분들은 벌써 눈치 쳈겠지만...
$uri 값만 바까줌으로써.. MySQL 이든 Oracle 이든 모두 사용가능 하다.
Sybase 및 기타 다른 DB도 해보고 싶지만 설치 되어 있는 환경이 없어서 테스트 불가

  1. 리스트 페이징

    Date2014.02.27 Views19386
    Read More
  2. 필드값 저장

    Date2014.02.27 Views24276
    Read More
  3. 엔터의 표현

    Date2014.02.27 Views19535
    Read More
  4. $_SERVER변수

    Date2014.02.27 Views24444
    Read More
  5. 날짜 계산하기 (하루전 날짜 구하기)

    Date2014.02.27 Views21627
    Read More
  6. 유용한 함수 모음

    Date2014.02.27 Views21422
    Read More
  7. 페이지 로딩 시간 측정

    Date2014.02.27 Views26041
    Read More
  8. PHP에서 자바스크립트 값 가져오기

    Date2014.02.27 Views31635
    Read More
  9. 주간날짜 뽑아오기

    Date2014.02.27 Views26731
    Read More
  10. 로또 숫자 랜덤하게 1~45까지 숫자 빼오기

    Date2014.02.27 Views25436
    Read More
  11. Record Drag/Drop Position

    Date2014.02.27 Views29201
    Read More
  12. 글내용 이미지 리사이징

    Date2014.02.27 Views29446
    Read More
  13. 쿠키변수받기

    Date2014.02.27 Views29211
    Read More
  14. GD를 이용한 스팸성 게시물 차단을 위한 보안 단어 입력 예제

    Date2014.02.27 Views26945
    Read More
  15. DB상의 많은 파일을 한꺼번에 다운받기

    Date2014.02.27 Views28332
    Read More
  16. PHP에서 PDF파일 생성하기

    Date2014.02.27 Views32777
    Read More
  17. PHP로 Excel 파일 만들기...

    Date2014.02.27 Views30257
    Read More
  18. Text를 GD 이미지로 뿌리기

    Date2014.02.27 Views29813
    Read More
  19. Class를 이용한 DB Connection 소스 (Oracle, MyS

    Date2014.02.27 Views30504
    Read More
  20. 무조건 알아야 할 PHP 속도 테스트 14 가지

    Date2014.02.27 Views30280
    Read More
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved