2001-11-08 16:59:07 +01:00
|
|
|
From the Introduction:
|
|
|
|
|
|
|
|
PHP is a wonderful language for building dynamic web pages.
|
|
|
|
Unfortunately, PHP's database access functions are not standardised.
|
|
|
|
Every database extension uses a different and incompatibile API.
|
|
|
|
This creates a need for a database class library to hide the differences
|
|
|
|
between the different databases (encapsulate the differences) so we can
|
|
|
|
easily switch databases.
|
2001-06-19 13:53:47 +02:00
|
|
|
|
2001-11-08 16:59:07 +01:00
|
|
|
ADODB stands for Active Data Objects Data Base.
|
2001-07-21 18:03:03 +02:00
|
|
|
|
2001-11-08 16:59:07 +01:00
|
|
|
ADODB currently supports:
|
2001-07-08 16:58:59 +02:00
|
|
|
MySQL, PostgreSQL, Interbase, Oracle, MS SQL 7
|
2001-11-08 16:59:07 +01:00
|
|
|
Foxpro, Access, ADO, Sybase, DB2 and generic ODBC.
|
2001-07-08 16:58:59 +02:00
|
|
|
|
2005-04-28 17:13:47 +02:00
|
|
|
WWW: http://adodb.sourceforge.net
|