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
6fd2eaa4
Commit
6fd2eaa4
authored
Oct 08, 2009
by
jwage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Fix to DatabaseDriver so drivers that don't support foreign keys will still work
parent
98cf9017
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
DatabaseDriver.php
lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php
+8
-2
No files found.
lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php
View file @
6fd2eaa4
...
...
@@ -68,7 +68,11 @@ class DatabaseDriver implements Driver
$metadata
->
primaryTable
[
'name'
]
=
$tableName
;
$columns
=
$this
->
_sm
->
listTableColumns
(
$tableName
);
$foreignKeys
=
$this
->
_sm
->
listTableForeignKeys
(
$tableName
);
try
{
$foreignKeys
=
$this
->
_sm
->
listTableForeignKeys
(
$tableName
);
}
catch
(
\Doctrine\Common\DoctrineException
$e
)
{
$foreignKeys
=
array
();
}
$ids
=
array
();
$fieldMappings
=
array
();
...
...
@@ -102,7 +106,9 @@ class DatabaseDriver implements Driver
}
if
(
$ids
)
{
$metadata
->
setIdGeneratorType
(
ClassMetadataInfo
::
GENERATOR_TYPE_AUTO
);
if
(
count
(
$ids
)
==
1
)
{
$metadata
->
setIdGeneratorType
(
ClassMetadataInfo
::
GENERATOR_TYPE_AUTO
);
}
foreach
(
$ids
as
$id
)
{
$metadata
->
mapField
(
$id
);
...
...
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