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
c239ff4b
Commit
c239ff4b
authored
Sep 27, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added exception info in Doctrine_Record doc blocks, fixes #125
Ticket: 125
parent
bed3a371
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
82 additions
and
48 deletions
+82
-48
Manager.php
lib/Doctrine/Manager.php
+1
-1
Record.php
lib/Doctrine/Record.php
+74
-40
run.php
tests/run.php
+7
-7
No files found.
lib/Doctrine/Manager.php
View file @
c239ff4b
...
@@ -85,7 +85,7 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera
...
@@ -85,7 +85,7 @@ class Doctrine_Manager extends Doctrine_Configurable implements Countable, Itera
Doctrine
::
ATTR_FETCHMODE
=>
Doctrine
::
FETCH_IMMEDIATE
,
Doctrine
::
ATTR_FETCHMODE
=>
Doctrine
::
FETCH_IMMEDIATE
,
Doctrine
::
ATTR_BATCH_SIZE
=>
5
,
Doctrine
::
ATTR_BATCH_SIZE
=>
5
,
Doctrine
::
ATTR_COLL_LIMIT
=>
5
,
Doctrine
::
ATTR_COLL_LIMIT
=>
5
,
Doctrine
::
ATTR_LISTENER
=>
new
Doctrine_EventListener
_Empty
(),
Doctrine
::
ATTR_LISTENER
=>
new
Doctrine_EventListener
(),
Doctrine
::
ATTR_LOCKMODE
=>
1
,
Doctrine
::
ATTR_LOCKMODE
=>
1
,
Doctrine
::
ATTR_VLD
=>
false
,
Doctrine
::
ATTR_VLD
=>
false
,
Doctrine
::
ATTR_CREATE_TABLES
=>
true
,
Doctrine
::
ATTR_CREATE_TABLES
=>
true
,
...
...
lib/Doctrine/Record.php
View file @
c239ff4b
This diff is collapsed.
Click to expand it.
tests/run.php
View file @
c239ff4b
...
@@ -37,10 +37,11 @@ error_reporting(E_ALL);
...
@@ -37,10 +37,11 @@ error_reporting(E_ALL);
$test
=
new
GroupTest
(
"Doctrine Framework Unit Tests"
);
$test
=
new
GroupTest
(
"Doctrine Framework Unit Tests"
);
$test
->
addTestCase
(
new
Doctrine_DB_TestCase
());
/**
$test
->
addTestCase
(
new
Doctrine_ConnectionTestCase
());
$test
->
addTestCase
(
new
Doctrine_ConnectionTestCase
());
$test
->
addTestCase
(
new
Doctrine_DB_TestCase
());
$test
->
addTestCase
(
new
Doctrine_RecordTestCase
());
$test
->
addTestCase
(
new
Doctrine_RecordTestCase
());
$test
->
addTestCase
(
new
Doctrine_AccessTestCase
());
$test
->
addTestCase
(
new
Doctrine_AccessTestCase
());
...
@@ -74,17 +75,15 @@ $test->addTestCase(new Doctrine_ValueHolder_TestCase());
...
@@ -74,17 +75,15 @@ $test->addTestCase(new Doctrine_ValueHolder_TestCase());
$test
->
addTestCase
(
new
Doctrine_RawSql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_RawSql_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_Limit_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_Limit_TestCase
());
*/
//$test->addTestCase(new Doctrine_SchemaTestCase());
//$test->addTestCase(new Doctrine_SchemaTestCase());
//$test->addTestCase(new Doctrine_ImportTestCase());
//$test->addTestCase(new Doctrine_ImportTestCase());
/**
$test
->
addTestCase
(
new
Doctrine_CollectionTestCase
());
$test
->
addTestCase
(
new
Doctrine_CollectionTestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_ReferenceModel_TestCase
());
$test
->
addTestCase
(
new
Doctrine_Query_ReferenceModel_TestCase
());
$test->addTestCase(new Doctrine_BooleanTestCase());
$test
->
addTestCase
(
new
Doctrine_QueryTestCase
());
$test
->
addTestCase
(
new
Doctrine_QueryTestCase
());
$test
->
addTestCase
(
new
Doctrine_EnumTestCase
());
$test
->
addTestCase
(
new
Doctrine_EnumTestCase
());
...
@@ -94,7 +93,8 @@ $test->addTestCase(new Doctrine_RelationAccessTestCase());
...
@@ -94,7 +93,8 @@ $test->addTestCase(new Doctrine_RelationAccessTestCase());
$test
->
addTestCase
(
new
Doctrine_EventListener_Chain_TestCase
());
$test
->
addTestCase
(
new
Doctrine_EventListener_Chain_TestCase
());
$test
->
addTestCase
(
new
Doctrine_DataDict_Sqlite_TestCase
());
$test
->
addTestCase
(
new
Doctrine_DataDict_Sqlite_TestCase
());
*/
$test
->
addTestCase
(
new
Doctrine_BooleanTestCase
());
//$test->addTestCase(new Doctrine_Cache_FileTestCase());
//$test->addTestCase(new Doctrine_Cache_FileTestCase());
//$test->addTestCase(new Doctrine_Cache_SqliteTestCase());
//$test->addTestCase(new Doctrine_Cache_SqliteTestCase());
...
...
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