You cannot see this page without javascript.

test/test.php

<?php
 define('__ZBXE__', true);
 define('__XE__', true);
 require_once $_SERVER['DOCUMENT_ROOT'].'/config/config.inc.php';
 $oContext = &Context::getInstance();
 $oContext->init();
      $args->document_srl = 1608;
      $args->rateval = 1; //1점이상인 사람만 가져옴
      $output = executeQueryArray('widgets.star_rating.getStarRatedList', $args);

 echo print_r($output,true);

$oContext->close();

?>

 


widgets/star_rating/query/getStarList.xml

 

<query id="getDocumentStarRatedList" action="select">
    <tables>
        <table name="document_voted_log" />
    </tables>
    <columns>
        <column name="member_srl" />
        <column name="rateval" />
    </columns>
    <conditions>
        <condition operation="equal" column="document_srl" var="document_srl" filter="number" notnull="notnull" pipe="and" />
        <condition operation="more" column="rateval" var="rateval" filter="number" pipe="and" />
    </conditions>
</query>


 

위와 같이 test.php 파일과 getStarList.xml 이라는 파일을 생성하고 test.php를 실행하면 제대로 배열값이 표시됩니다.

 

 

*풀이하기

 

1. test.php파일에 config.inc.php 를 읽어 들이면

'config/func.inc.php' 파일을 함께 포함하게 되면 아래와 같이 func.in.php에 정의된 다양한 xe의 기본 함수를 사용할 수 있습니다.

 

    function executeQuery($query_id, $args = null) {
        $oDB = &DB::getInstance();
        return $oDB->executeQuery($query_id, $args);
    }


 

2. 단,  $oContext = &Context::getInstance(); 를 선언해 주어야 제대로 작동합니다.

 

*고민

  

xe의 모듈과 위젯의 query를 이용할 수 있다는 점은 좋지만

새로운 db query 문을 실행하기 위해서는 선택을 해야합니다.

특정 모듈의 query 폴더에 쿼리 내용의 xml 파일을 만들어 저장하여 executeQuery() 함수를 사용할 것인지

아니면  $oDB=&DB::getInstance(); 를 선언하 사용할 것인지를.

 

아래의 코드는 위와 비슷한 db값을 출력하는 내용입니다. 다른 점을 찾아보세요.

 

test/test2.php

 

<?php
 define('__ZBXE__', true);
 define('__XE__', true);
 require_once $_SERVER['DOCUMENT_ROOT'].'/config/config.inc.php';
 $oContext = &Context::getInstance();
 $oContext->init();

 $oDB = &DB::getInstance();

 

 //$args->document_srl = 1608;
 //$args->rateval = 1; //1점이상인 사람만 가져옴

$member_srl = 4;

$document_srl = 1608;
$tablename = 'db_document_voted_log';

 // 사용자가 투표한 적이 있는지 검사
 $result = $oDB->_query("select rateval from $tablename where member_srl='$member_srl' && document_srl='$document_srl'");
 $output = $oDB->_fetch($result); //배열 재구성


echo print_r($output,true);

$oContext->close();

?>

엮인글 :
List of Articles
번호 제목 글쓴이 날짜sort 조회 수
369 Windows7 OEM을 활용하여 클린설치 file [11] LynX 2010-11-06 765
368 Windows7 에서 시스템을 백업/복원하는 가장 쉬운 방법!! file LynX 2010-11-07 334
367 탐색기 메뉴에 '명령 프롬프트 열기'와 '메모장으로 열기' 추가하기 file [14] LynX 2010-11-08 591
366 인터넷 익스플로러 리플레쉬 file LynX 2011-05-02 286
365 활성 네트워크 중복으로 인한 인터넷 연결 안되는 문제 file [12] LynX 2011-05-26 971
364 32bit Driver을 64bi로 설치하기 [8] LynX 2011-06-21 325
363 설치파일(inf)에 대한 이해 [7] LynX 2011-06-22 603
362 inf 설치시 경고창 안뜨게 하기 file [10] LynX 2011-06-22 430
361 로우 포맷(Low level format, 저수준 포맷) 하기 file [11] LynX 2011-07-06 722
360 Win XP Crack file [8] LynX 2011-10-31 269
359 윈도우7 메모리 인식 문재 file [13] LynX 2011-11-30 530
358 RoundCube 첨부 용량 변경 / 한글 수정 [10] LynX 2012-01-31 836
357 윈도우7 알수없는장치 file [8] LynX 2012-03-13 273
356 디지털 서명 file [1] LynX 2012-03-15 445
355 아레한글 사용시 출력물에 음영이 나타나는 현상. file [11] LynX 2012-03-29 1155
354 Xyview DVR서버 연결 [8] LynX 2012-04-19 295
353 HP Officejet 6500A (Plus) 호환 드라이버 [8] LynX 2012-05-16 294
352 IIS에 FastCgi모듈 활성화 시키기 file [12] LynX 2012-11-21 1283
351 윈도우 2008서버에 XE 설치 절차 [9] LynX 2012-11-22 230
350 Windows Server 2012 설치 file LynX 2012-11-23 477

XE Login