Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
1d3cdd0a
Commit
1d3cdd0a
authored
Sep 24, 2007
by
Jonathan.Wage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed test code.
parent
13a1a619
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
25 deletions
+3
-25
index.php
playground/index.php
+3
-25
No files found.
playground/index.php
View file @
1d3cdd0a
<?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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment