diff --git a/config/func.inc.php b/config/func.inc.php index 87aad755a..708061d0e 100644 --- a/config/func.inc.php +++ b/config/func.inc.php @@ -54,6 +54,14 @@ return getModule($module_name, 'class'); } + /** + * @brief DB::executeQuery() 를 별도로 함수로 지정.. + **/ + function executeQuery($query_id, $args = null) { + $oDB = &DB::getInstance(); + return $oDB->executeQuery($query_id, $args); + } + /** * @brief Context::getUrl($args_list)를 쓰기 쉽게 함수로 선언