moodle/lib/adodb
2009-03-23 09:53:02 +00:00
..
datadict MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
drivers Fix MSSQL Insert_ID() to work when inserting using placeholders. MDL-14886 2008-05-18 01:06:08 +00:00
lang Merged Adodb 4.98 from 1.9 MDL-13474 2008-02-15 07:02:02 +00:00
perf MDL-18644 Bugs found by syntax checker, merged from MOODLE_19_STABLE 2009-03-23 09:53:02 +00:00
xsl import of ADODB v4.91 and general cleanup, removed some unused files - see readme_moodle.txt; new session2 code needs a new table, I am going to use the new database functions for that later, for now we are using the old table and old database session code. 2006-08-21 06:54:00 +00:00
adodb-active-record.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-csvlib.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-datadict.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-error.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-errorhandler.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-errorpear.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-exceptions.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-iterator.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-lib.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-memcache.lib.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-pager.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-pear.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-perf.inc.php "MDL-17570,clean align property, merged from 1.9" 2008-12-10 07:24:11 +00:00
adodb-php4.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-time.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-xmlschema.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb-xmlschema03.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
adodb.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
index.html import of ADODB v4.91 and general cleanup, removed some unused files - see readme_moodle.txt; new session2 code needs a new table, I am going to use the new database functions for that later, for now we are using the old table and old database session code. 2006-08-21 06:54:00 +00:00
license.txt Latest version of ADOdb. Now compatible with PHP5 2004-07-13 03:13:35 +00:00
pivottable.inc.php Merged Adodb 4.98 from 1.9 MDL-13474 2008-02-15 07:02:02 +00:00
readme.txt Updated ADOdb to latest version 4.60 2005-02-18 08:37:18 +00:00
readme_moodle.txt MDL-14992 towards new moodle db sessions 2009-01-14 17:08:29 +00:00
rsfilter.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
toexport.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
tohtml.inc.php MDL-14672 adodb PHP5 only version V5.04a import - yay! 2008-05-02 22:50:22 +00:00
xmlschema.dtd Merged in the new ADOdb 4.66 from STABLE 2005-11-10 08:06:07 +00:00
xmlschema03.dtd import of ADODB v4.91 and general cleanup, removed some unused files - see readme_moodle.txt; new session2 code needs a new table, I am going to use the new database functions for that later, for now we are using the old table and old database session code. 2006-08-21 06:54:00 +00:00

>> ADODB Library for PHP4

(c) 2000-2004 John Lim (jlim@natsoft.com.my)

Released under both BSD and GNU Lesser GPL library license. 
This means you can use it in proprietary products.
 
 
>> Introduction

PHP's database access functions are not standardised. 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.

We currently support MySQL, Interbase, Sybase, PostgreSQL, Oracle, 
Microsoft SQL server,  Foxpro ODBC, Access ODBC, Informix, DB2,
Sybase SQL Anywhere, generic ODBC and Microsoft's ADO. 

We hope more people will contribute drivers to support other databases.


>> Documentation and Examples

Refer to the adodb/docs directory for full documentation and examples. 
There is also a  tutorial tute.htm that contrasts ADODB code with 
mysql code.


>>> Files
Adodb.inc.php is the main file. You need to include only this file.

Adodb-*.inc.php are the database specific driver code.

Test.php contains a list of test commands to exercise the class library.

Adodb-session.php is the PHP4 session handling code.

Testdatabases.inc.php contains the list of databases to apply the tests on.

Benchmark.php is a simple benchmark to test the throughput of a simple SELECT 
statement for databases described in testdatabases.inc.php. The benchmark
tables are created in test.php.

readme.htm is the main documentation.

tute.htm is the tutorial.


>> More Info

For more information, including installation see readme.htm
or visit
           http://adodb.sourceforge.net/


>> Feature Requests and Bug Reports

Email to jlim@natsoft.com.my