mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-24 21:59:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@968 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
0558e2c6be
commit
2577bb60b7
5 changed files with 256 additions and 151 deletions
|
|
@ -1,14 +1,14 @@
|
|||
<?php
|
||||
/**
|
||||
* @class DBMysqli
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief MySQLi DBMS를 이용하기 위한 class
|
||||
* @version 0.1
|
||||
* @todo mysqli 미구현 (mysql과 같은 처리..)
|
||||
*
|
||||
* mysqli의 prepare, bind param등을 사용하려고 만들었으나....
|
||||
* 문제는 bind_param 시에 mixed var를 eval이 아닌 방법으로 구현할 방법을 찾지 못했음.
|
||||
**/
|
||||
* @class DBMysqli
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief MySQLi DBMS를 이용하기 위한 class
|
||||
* @version 0.1
|
||||
* @todo mysqli 미구현 (mysql과 같은 처리..)
|
||||
*
|
||||
* mysqli의 prepare, bind param등을 사용하려고 만들었으나....
|
||||
* 문제는 bind_param 시에 mixed var를 eval이 아닌 방법으로 구현할 방법을 찾지 못했음.
|
||||
**/
|
||||
|
||||
class DBMysqli extends DB {
|
||||
|
||||
|
|
@ -125,6 +125,24 @@
|
|||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 트랜잭션 시작
|
||||
**/
|
||||
function begin() {
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 롤백
|
||||
**/
|
||||
function rollback() {
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 커밋
|
||||
**/
|
||||
function commit() {
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 결과를 fetch
|
||||
**/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue