RE: [PHP] ODBC Function equivalent to MySql_Fetch_Array

2001-07-11 Thread Bob Horton
> > > Sent: Wednesday, July 11, 2001 10:39 AM > > > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > > > Subject: RE: [PHP] ODBC Function equivalent to MySql_Fetch_Array > > > > > > > > > odbc_fetch_into gives me an array but it doesn't give the

RE: [PHP] ODBC Function equivalent to MySql_Fetch_Array

2001-07-11 Thread Andrew Hill
Data Integration Technology Providers > > > -Original Message- > > From: Bob Horton [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, July 11, 2001 10:39 AM > > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > > Subject: RE: [PHP] ODBC Function equivalent to MySql_Fe

RE: [PHP] ODBC Function equivalent to MySql_Fetch_Array

2001-07-11 Thread Andrew Hill
Data Integration Technology Providers > -Original Message- > From: Bob Horton [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 11, 2001 10:39 AM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: RE: [PHP] ODBC Function equivalent to MySql_Fetch_Array > > > odbc_

RE: [PHP] ODBC Function equivalent to MySql_Fetch_Array

2001-07-11 Thread Bob Horton
odbc_fetch_into gives me an array but it doesn't give the column names. While many might consider that a small point I find that it helps substantially in making my code self documenting. $row[2] is much less readable than $row[Name] > -Original Message- > Bob, > > Why doesn't odbc_fetch

RE: [PHP] ODBC Function equivalent to MySql_Fetch_Array

2001-07-11 Thread Andrew Hill
[mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 11, 2001 1:23 AM > To: [EMAIL PROTECTED] > Subject: [PHP] ODBC Function equivalent to MySql_Fetch_Array > > > Hi, > > I'm trying to write a function (see below) that will provide equivalent > functionality between OD

[PHP] ODBC Function equivalent to MySql_Fetch_Array

2001-07-10 Thread Bob Horton
Hi, I'm trying to write a function (see below) that will provide equivalent functionality between ODBC and MySQL for mysql_fetch_array based upon a preset variable. I've written something that works but A) I'm afraid it might be quite slow; and B) I'm hoping that there is an existing function to