List,
        The following code is erroring for me and I can't figure out why

$db = odbc_connect("something", "something", "passwd");
printf("%s", $db); // Prints ID 1
// Hangs here it looks like
$rs = odbc_exec($db, "spGetItems");
// Never gets here
while(odbc_fetch_row($rs)) {
        printf("%s", odbc_result($rs, 2));
}


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to