Re: [PHP-DB] Looking for a good MySQL db abstraction layer

2002-03-08 Thread Indioblanco
PEAR, Metabase, and ADODB are all good db abstraction packages with their respective merits. But if your looking for something simple, efficient, for mysql only try: http://www.phpclasses.org/browse.html/package/107.html The package contains basic connection, sql command, and recordset classes. I

Re: [PHP-DB] Looking for a good MySQL db abstraction layer

2002-03-08 Thread Paul Burney
on 3/8/02 1:04 PM, Michael Zornek at [EMAIL PROTECTED] appended the following bits to my mbox: > I'm looking for a good MySQL db abstraction layer. I'm just coming back to > PHP/MySQL and rather writing my own I figured I'd try to see if any are > already out there. > > The layer should obviousl

Re: [PHP-DB] Looking for a good MySQL db abstraction layer

2002-03-08 Thread Andrey Hristov
Try those provided in PEAR(in the distro). Best regards, Andrey Hristov On Friday 08 March 2002 08:04 pm, you wrote: > I'm looking for a good MySQL db abstraction layer. I'm just coming back to > PHP/MySQL and rather writing my own I figured I'd try to see if any are > already out there. > > The

[PHP-DB] Looking for a good MySQL db abstraction layer

2002-03-08 Thread Michael Zornek
I'm looking for a good MySQL db abstraction layer. I'm just coming back to PHP/MySQL and rather writing my own I figured I'd try to see if any are already out there. The layer should obviously have the basics, of connect, query, and close, and possibly some error checking and handling. thanks,