이런 에러가 납니다.
Warning: OCIServerAttach: Error while trying to retrieve text for error ORA-12545
소스는 다음과 같습니다.
$conn = OCILogon("scott","tiger"); <== 에러의 위치는 여기입니다.
$stmt = OCIParse($conn,"select empno, ename from emp");
OCIDefineByName($stmt,"EMPNO",&$empno);
OCIDefineByName($stmt,"ENAME",&$ename);
OCIExecute($stmt);
while (OCIFetch($stmt)) {
echo "empno:".$empno."\n";
echo "ename:".$ename."\n";
}
OCIFreeStatement($stmt);
OCILogoff($conn);
오라클을 처음 php에 붙여보니깐 여럽네요.
정성어린 답변에 미리감사드립니다.
감기 조심하세요
|