Notes on Integrating the ADOdb Classes with php.MVC
Contents:
1. Untar the ADOdb files.
2. Place ADOdb folder in the "phpmvc/WEB-INF/lib" library directory.
3. Edit the "phpmvc/WEB-INF/GlobalPaths.php" library file. Add in the line:
$appDirs[] = 'WEB-INF/lib/adodb';
4. Edit the "phpmvc/WEB-INF/globalPrepend.php" library file. Add in the lines:
include_once 'WEB-INF/lib/adodb/adodb.inc.php'; // Main include file for ADOdb
include_once 'WEB-INF/lib/adodb/drivers/adodb-mysqlt.inc.php'; // The ADOdb-MySQL driver
include_once 'WEB-INF/lib/adodb/drivers/adodb-access.inc.php'; // Add other drivers as req'd
include_once 'AdodbDataSource.php'; // The php.MVC to ADOdb driver
5. Edit the application "phpmvc-config.xml" configuration file as detailed in the
XML Configurations and Bindings section of the ADOdb Database Access in php.MVC users guide.