====== adoSchema ====== ~~NOTOC~~ == Syntax == object adoSchema( obj $db ) ===== Description ===== Creating an adoSchema object is the first step in processing an XML schema. The only parameter is an ADOdb database connection object, which must already have been created. ===== Example Usage ===== include 'adodb/adodb.inc.php'; include 'adodb/adodb-xmlschema03.inc.php'; $db = newAdoConnction('mysqli'); $db->connect('','user','pass','employees'); $axmls = new adoSchema($db);