Re: [PHP] PROGRESS SQL_CUR_USE_ODBC

2005-10-07 Thread Richard Lynch
On Tue, October 4, 2005 11:47 am, 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 result

RE: [PHP] PROGRESS SQL_CUR_USE_ODBC

2005-10-04 Thread Programmer
I don't know if this will help you. I use an openlink ODBC driver to connect to Progress via PHP like so: $dbconn = odbc_connect("MyDB_ODBC",$username,$password,SQL_CUR_USE_ODBC); $strQry = "SELECT * FROM mytable WHERE mytable.field = ".$somevar; $rsTable = odbc_do($dbconn, $strQry);

Re: [PHP] PROGRESS SQL_CUR_USE_ODBC

2005-10-04 Thread Kristen G. Thorson
cybermalandro cybermalandro wrote: Thanks for your prompt response! Are you using the pear DB class requiring odbc? I am not very familiar with this class and pear. I was trying to do it the old way. Perhaps you can give me some more examples? I really appreciate your help. Thanks On 10/4/

Re: [PHP] PROGRESS SQL_CUR_USE_ODBC

2005-10-04 Thread Kristen G. Thorson
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 *Noti