Posted by "Kristen G. Thorson" on 09/26/94 11:28
cybermalandro cybermalandro wrote:
>I am connecting to a PROGRESS DB through the MERANT ODBC driver, When I have
>the 4th parameter SQL_CUR_USE_ODBC as shown, my queries return nothing but
>if I have the 4th parameter as lower case it returns my query results but
>with a PHP error complainning
>*Notice*: Use of undefined constant sql_cur_use_odbc - assumed
>'sql_cur_use_odbc'
>
>Wtf? I don't get it, most of the documentation from people connecting to
>PROGRESS do have the 4th parameter uppercase can someone help me out ?
>
>Thanks!
>
>
>
Using PEAR:DB with this dsn I can connect and get results:
$dsn =
"odbc(Progress_SQL92_Driver)://$username:$password@$protocol+$ip:$port/$database?cursor=SQL_CUR_USE_ODBC";
kgt
[Back to original message]
|