Heim  >  Artikel  >  Backend-Entwicklung  >  关于PEAR:DB_DataObject,该如何解决

关于PEAR:DB_DataObject,该如何解决

WBOY
WBOYOriginal
2016-06-13 13:44:011019Durchsuche

关于PEAR::DB_DataObject
项目目录为DBTest

数据库名称为db_object_test,库下有四个表。

目录下有配置文件DB_DataObject.ini

[DB_DataObject]
databse = mysql://root:welcome@localhost/db_object_test
schema_location = DBTables
class_location = DBTables/
class_prefix = DBTables_



目录下有php文件CreatDBTables.php

PHP code
<!--

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();
?>



此外目录下还有目录DBTables。

运行php文件,本来应该能够在DBTables下生成4个php文件分别存放着对应数据表的实体类。
但是运行结果只显示:

DB_DataObject_Generator: 0: DONE

而且DBTables中并无生成php文件。

请问为什么?


------解决方案--------------------
不用的。。
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn