#113 DB 클래스에 index 유무 파악과 index추가 method 추가. (mysql만 동작)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2387 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-23 05:39:56 +00:00
parent 1d2f012c71
commit 749873e6c1
5 changed files with 87 additions and 0 deletions

View file

@ -227,6 +227,20 @@
return false;
}
/**
* @brief 특정 테이블에 특정 인덱스 추가
* $target_columns = array(col1, col2)
* $is_unique? unique : none
**/
function addIndex($table_name, $index_name, $target_columns, $is_unique = false) {
}
/**
* @brief 특정 테이블의 index 정보를 return
**/
function isIndexExists($table_name, $index_name) {
}
/**
* @brief xml 받아서 테이블을 생성
**/