Hi all

I want to get ms access 97 tables/columns info with

$db=odbc_connect(...)
$res=odbc_columns($db)
while ($rec=db_fetch_into($res)) {
      // do something with $rec
}

where db_fetch_into is:
function db_fetch_into($result) {
    $row = array();
    $cols = @odbc_fetch_into($result, &$row);
    if (!$cols) {
    db_check_errors($php_errormsg);
    return false;
    }
    return $row;
}

and get "Initialization of d:\winnt\user32.dll failed" system message.

Can someone helps me?

I use WinNT Server sp6a / Apache 1.3.19 / PHP 4.0.4pl1 as apache module


R. Ohitin
[EMAIL PROTECTED]



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to