function(). * * Functions that interact with the resetset created by a query should * be placed inside the blob_ResultSet class. These are functions accessed using * $result->function(). * * Example: * $result = $db->Execute($sql); * echo $result->function(); * * Place the file into the approriate database driver directory. You should create one * for each database you would like to support. * * To use your blob module start ADOdb Lite using. * * $db = ADONewConnection($databasetype, 'blob'); * * Remember to replace every instance of mysql in the statements below with the database name * the module is to be used. * */ eval('class mysql_example_EXTENDER extends '. $last_module . '_ADOConnection { }'); class mysql_example_ADOConnection extends mysql_example_EXTENDER { } eval('class mysql_example_resultset_EXTENDER extends '. $last_module . '_ResultSet { }'); class mysql_example_ResultSet extends mysql_example_resultset_EXTENDER { } ?>