12 07 05

Plan/CodeIgniter 2012. 7. 6. 09:33

1. 샘플작성 

- 공개 소스 https://github.com/EllisLab/CodeIgniter/wiki

- 데이터베이스 컨트롤

- 저장 프로시저 또는 PLSQL 사용방법

Posted by 앤비
,

<?

$dbconn = pg_connect("host=192.168.0.35 dbname=postgres user=postgres password=1234") or die('Could not connect');

$query = "select * from test";

$result = pg_exec($dbconn, $query);

while($records=pg_fetch_array($result)){

echo "id: ".$records['id']." /name: ".iconv("UTF-8","EUC-KR",$records["name"])." /test: ".$records["test"];

}

?>

Posted by 앤비
,

12 7 05

Plan/MySQL 2012. 7. 6. 09:28

1. OSX 클라이언트 한글 지원 확인

Posted by 앤비
,