PEAR::DB_DataObject について
プロジェクト ディレクトリは DBTest
データベース名は db_object_test で、ライブラリの下に 4 つのテーブルがあります。
ディレクトリに構成ファイル DB_DataObject.ini があります
[DB_DataObject]
databse = mysql://root:welcome@localhost/db_object_test
schema_location = DBTables
class_location = DBTables/
class_prefix = DBTables_
ディレクトリ CreatDBTables.php
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php require_once 'DB/DataObject/Generator.php'; $config = parse_ini_file("DB_DataObject.ini", true); $options = &PEAR::getStaticProperty('DB_DataObject','options'); $options = $config['DB_DataObject']; if (!$options){ PEAR::raiseError("\nerror\n", null, PEAR_ERROR_DIE); exit; } set_time_limit(0); DB_DataObject::debugLevel(1); $generator = new DB_DataObject_Generator; $generator->start(); ?>