Created
November 25, 2009 14:40
-
-
Save co3k/242752 to your computer and use it in GitHub Desktop.
Doctrine にバグ報告をする途中
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* $Id: config.php 2753 2007-10-07 20:58:08Z Jonathan.Wage $ | |
* | |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
* | |
* This software consists of voluntary contributions made by many individuals | |
* and is licensed under the LGPL. For more information, see | |
* <http://www.phpdoctrine.org>. | |
*/ | |
/** | |
* Doctrine Configuration File | |
* | |
* This is a sample implementation of Doctrine | |
* | |
* @package Doctrine | |
* @subpackage Config | |
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL | |
* @link www.phpdoctrine.org | |
* @since 1.0 | |
* @version $Revision: 2753 $ | |
* @author Konsta Vesterinen <[email protected]> | |
* @author Jonathan H. Wage <[email protected]> | |
*/ | |
define('SANDBOX_PATH', dirname(__FILE__)); | |
define('DOCTRINE_PATH', dirname(dirname(SANDBOX_PATH)) . DIRECTORY_SEPARATOR . 'lib'); | |
define('DATA_FIXTURES_PATH', SANDBOX_PATH . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'fixtures'); | |
define('MODELS_PATH', SANDBOX_PATH . DIRECTORY_SEPARATOR . 'models'); | |
define('MIGRATIONS_PATH', SANDBOX_PATH . DIRECTORY_SEPARATOR . 'migrations'); | |
define('SQL_PATH', SANDBOX_PATH . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . 'sql'); | |
define('YAML_SCHEMA_PATH', SANDBOX_PATH . DIRECTORY_SEPARATOR . 'schema'); | |
define('DB_PATH', SANDBOX_PATH . DIRECTORY_SEPARATOR . 'sandbox.db'); | |
define('DSN', 'mysql://root@localhost/doctrine_test'); | |
require_once(DOCTRINE_PATH . DIRECTORY_SEPARATOR . 'Doctrine.php'); | |
Doctrine_Core::setExtensionsPath(dirname(__FILE__).'/extensions'); | |
spl_autoload_register(array('Doctrine', 'autoload')); | |
spl_autoload_register(array('Doctrine', 'modelsAutoload')); | |
spl_autoload_register(array('Doctrine', 'extensionsAutoload')); | |
$manager = Doctrine_Manager::getInstance(); | |
$manager->openConnection(DSN, 'doctrine'); | |
$manager->setAttribute(Doctrine_Core::ATTR_MODEL_LOADING, Doctrine_Core::MODEL_LOADING_PEAR); | |
$manager->setAttribute(Doctrine_Core::ATTR_USE_DQL_CALLBACKS, true); | |
Doctrine_Core::setModelsDirectory('models'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Example: | |
example_1: | |
dummy: true | |
AnotherExample: | |
another_example_1: | |
dummy: true | |
SubExample: | |
sub_example_1: | |
Example: example_1 | |
AnotherExample: another_example_1 | |
dummy: true | |
sub_example_2: | |
dummy: true | |
Example: example_1 | |
AnotherExample: another_example_1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd $DOCTRINE_SANDBOX_PATH | |
./doctrine build-all-reload |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Example: | |
columns: | |
dummy: { type: boolean } | |
SubExample: | |
columns: | |
example_id: { type: integer, notnull: true } | |
another_example_id: { type: integer, notnull: true } | |
dummy: { type: boolean } | |
relations: | |
Example: { local: example_id, foreign: id } | |
AnotherExample: { local: another_example_id, foreign: id } | |
AnotherExample: | |
columns: | |
dummy: { type: boolean } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment