[PHP] ODBC connect w/ connectstr instead of DSN

2001-09-19 Thread Emile Bosch
Is it possible to connect with odbc_connect with an connectstring instead of an DSN? Warm regards, Emile Bosch -- PHP General 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-m

RE: [PHP] ODBC connect

2001-05-15 Thread Andrew Hill
May 14, 2001 9:02 PM > To: Php (E-mail) > Subject: [PHP] ODBC connect > > > Hi there, > > I would like to get information out of a database via ODBC. > > I switched from MySQL. > > The old syntax does not work which was like: > > while ($row = odbc_fetch_row($re

[PHP] ODBC connect

2001-05-14 Thread Andreas Pucko
Hi there, I would like to get information out of a database via ODBC. I switched from MySQL. The old syntax does not work which was like: while ($row = odbc_fetch_row($result)) { printf ("%s", $row->nr,$row->name); } so, how do I get the nr and name out of the row?? Any suggestions