$connection = int odbc_connect(string dsn, string user, string 비밀번호)는 데이터베이스 연결을 설정합니다.
$query_string = "Query Record Condition"
예: $query_string = "select * from table"
사용 $ cur = int odbc_exec(int Connection_id, string query_string)은 데이터베이스를 검색하고 레코드 세트를 $cur 변수에 넣습니다.
(odbc_fetch_row($cur)){
$var1=odbc_result($cur,1)
$var2=odbc_result($cur,1);
...
}
odbc_exec()에서 반환된 데이터 세트 $cur를 읽습니다.
마지막으로 odbc_close(int Connection_id)는 데이터베이스 연결을 닫습니다.
odbc_result() 함수는 현재 레코드의 지정된 필드 값을 사용합니다.
위 내용은 JDBC 데이터베이스의 내용을 포함하여 NT IIS에서 데이터베이스에 연결하기 위해 ODBC를 사용하는 JDBC 데이터베이스를 소개한 내용입니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.