Commit 1d3cdd0a authored by Jonathan.Wage's avatar Jonathan.Wage

Removed test code.

parent 13a1a619
<?php <?php
require_once('playground.php'); require_once('playground.php');
require_once('connection.php');
$action = isset($_REQUEST['action']) ? $_REQUEST['action']:'client'; require_once('models.php');
require_once('data.php');
if ($action == 'server') { \ No newline at end of file
require_once('connection.php');
require_once('models.php');
require_once('data.php');
$config = array('name' => 'Doctrine_Resource_Test_Server',
'models' => $tables);
$server = Doctrine_Resource_Server::getInstance($config);
$server->run($_REQUEST);
} else {
$config = array('url' => 'http://localhost/~jwage/doctrine_trunk/playground/index.php?action=server');
$client = Doctrine_Resource_Client::getInstance($config);
//$table = $client->getTable('User');
$query = new Doctrine_Resource_Query();
$users = $query->from('User u, u.Phonenumber p, u.Address a, u.Book b, b.Author a')->execute();
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment