지금 Unix에서 다른 서버에 있는 SybaseDB로 연결을 하려고 한느데
자꾸 에러가 나는군요.ㅠ.ㅠ
도대체 이유가 뭔지-_-;
소스는
<?
$dbcon=sybase_connect("IP:PORT","ID","PASSWORD");
sybase_select_db("webdb") or die("Unable to Connect database");
$re = sybase_query("select passwd from board_admin");
while($row=sybase_fetch_array($ew)){
echo "$row[0]<br>";
}
?>
이건데.-_-;
에러가.
Warning: Sybase: A link to the server could not be established in /export/new/php/data/aram.php on line 4
Unable to Connect database
이렇게 납니다.
PHP는 아는게 없어서.--;
뭐 ODBC같은걸 설치를 해야하는 건가요?
아님.뭐가. 문제인지.ㅠ.ㅠ
답변부탁드립니다.
|