1
0
mirror of synced 2024-12-13 06:46:03 +03:00
doctrine2/tests_old/unsolved.php
2008-02-08 17:27:54 +00:00

39 lines
919 B
PHP

<?php
require_once dirname(__FILE__) . '/../lib/Doctrine.php';
error_reporting(E_ALL);
spl_autoload_register(array('Doctrine', 'autoload'));
require_once 'classes.php';
require_once dirname(__FILE__) . '/../models/location.php';
print "<pre>";
$manager = Doctrine_Manager::getInstance();
$dbh = Doctrine_Db::getConnection('sqlite::memory:');
$conn = $manager->openConnection($dbh);
/**
$user = new User();
$user->name = 'zYne';
$user->Phonenumber[0]->phonenumber = '123 123';
if ($user === $user->Phonenumber[0]->entity_id) {
print 'case 1 works\n';
}
$city = new Record_City();
$city->name = 'City 1';
$city->District->name = 'District 1';
if ($city->District === $city->district_id) {
print 'case 2 works\n';
}
*/
$c = new Record_Country();
$c->name = 'Some country';
$city = $c->City[0];
$city->name = 'City 1';
$city->District->name = 'District 1';
$c->save();