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
1862f00f
Commit
1862f00f
authored
Sep 21, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new Doctrine_DB to the draft
parent
08a4de48
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
486 additions
and
7 deletions
+486
-7
Null.php
Doctrine/Null.php
+2
-3
Record.php
Doctrine/Record.php
+6
-2
DB.php
draft/DB.php
+476
-0
run.php
tests/run.php
+2
-2
No files found.
Doctrine/Null.php
View file @
1862f00f
...
...
@@ -26,7 +26,6 @@
*
* @package Doctrine ORM
* @url www.phpdoctrine.com
* @license LGPL
* @license LGPL
*/
class
Doctrine_Null
{
}
final
class
Doctrine_Null
{
}
Doctrine/Record.php
View file @
1862f00f
...
...
@@ -18,7 +18,7 @@
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_Access'
);
/**
* Doctrine_Record
* All record classes should inherit this super class
...
...
@@ -225,10 +225,14 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite
}
/**
* setUp
* implemented by child classes
* this method is used for setting up relations and attributes
* it should be implemented by child classes
*
* @return void
*/
public
function
setUp
()
{
}
/**
* getOID
* return the object identifier
*
* @return integer
...
...
draft/DB.php
0 → 100644
View file @
1862f00f
This diff is collapsed.
Click to expand it.
tests/run.php
View file @
1862f00f
...
...
@@ -25,7 +25,7 @@ require_once("FilterTestCase.php");
require_once
(
"ValueHolderTestCase.php"
);
require_once
(
"QueryLimitTestCase.php"
);
require_once
(
"QueryReferenceModelTestCase.php"
);
require_once
(
"DBTestCase.php"
);
require_once
(
"SchemaTestCase.php"
);
require_once
(
"ImportTestCase.php"
);
...
...
@@ -34,7 +34,7 @@ error_reporting(E_ALL);
$test
=
new
GroupTest
(
"Doctrine Framework Unit Tests"
);
//$test->addTestCase(new Doctrine_DB_TestCase());
$test
->
addTestCase
(
new
Doctrine_ConnectionTestCase
());
...
...
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