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
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);
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/
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
4 matches
Mail list logo