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
e26ed0d7
Unverified
Commit
e26ed0d7
authored
Dec 30, 2019
by
Sergei Morozov
Committed by
GitHub
Dec 30, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3794 from BenMorel/sqlite-fk
Support ForeignKeyConstraintViolationException in SQLite
parents
644531f3
d729f7bb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
4 deletions
+25
-4
AbstractSQLiteDriver.php
lib/Doctrine/DBAL/Driver/AbstractSQLiteDriver.php
+4
-0
AbstractSQLiteDriverTest.php
...s/Doctrine/Tests/DBAL/Driver/AbstractSQLiteDriverTest.php
+3
-0
ExceptionTest.php
tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php
+18
-4
No files found.
lib/Doctrine/DBAL/Driver/AbstractSQLiteDriver.php
View file @
e26ed0d7
...
@@ -39,6 +39,10 @@ abstract class AbstractSQLiteDriver implements Driver, ExceptionConverterDriver
...
@@ -39,6 +39,10 @@ abstract class AbstractSQLiteDriver implements Driver, ExceptionConverterDriver
return
new
Exception\UniqueConstraintViolationException
(
$message
,
$exception
);
return
new
Exception\UniqueConstraintViolationException
(
$message
,
$exception
);
}
}
if
(
strpos
(
$exception
->
getMessage
(),
'FOREIGN KEY constraint failed'
)
!==
false
)
{
return
new
Exception\ForeignKeyConstraintViolationException
(
$message
,
$exception
);
}
if
(
strpos
(
$exception
->
getMessage
(),
'may not be NULL'
)
!==
false
||
if
(
strpos
(
$exception
->
getMessage
(),
'may not be NULL'
)
!==
false
||
strpos
(
$exception
->
getMessage
(),
'NOT NULL constraint failed'
)
!==
false
strpos
(
$exception
->
getMessage
(),
'NOT NULL constraint failed'
)
!==
false
)
{
)
{
...
...
tests/Doctrine/Tests/DBAL/Driver/AbstractSQLiteDriverTest.php
View file @
e26ed0d7
...
@@ -64,6 +64,9 @@ class AbstractSQLiteDriverTest extends AbstractDriverTest
...
@@ -64,6 +64,9 @@ class AbstractSQLiteDriverTest extends AbstractDriverTest
[
0
,
null
,
'is not unique'
],
[
0
,
null
,
'is not unique'
],
[
0
,
null
,
'are not unique'
],
[
0
,
null
,
'are not unique'
],
],
],
self
::
EXCEPTION_FOREIGN_KEY_CONSTRAINT_VIOLATION
=>
[
[
0
,
null
,
'FOREIGN KEY constraint failed'
],
],
self
::
EXCEPTION_LOCK_WAIT_TIMEOUT
=>
[
self
::
EXCEPTION_LOCK_WAIT_TIMEOUT
=>
[
[
0
,
null
,
'database is locked'
],
[
0
,
null
,
'database is locked'
],
],
],
...
...
tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php
View file @
e26ed0d7
...
@@ -78,7 +78,11 @@ class ExceptionTest extends DbalFunctionalTestCase
...
@@ -78,7 +78,11 @@ class ExceptionTest extends DbalFunctionalTestCase
public
function
testForeignKeyConstraintViolationExceptionOnInsert
()
:
void
public
function
testForeignKeyConstraintViolationExceptionOnInsert
()
:
void
{
{
if
(
!
$this
->
connection
->
getDatabasePlatform
()
->
supportsForeignKeyConstraints
())
{
$platform
=
$this
->
connection
->
getDatabasePlatform
();
if
(
$platform
instanceof
SqlitePlatform
)
{
$this
->
connection
->
exec
(
'PRAGMA foreign_keys = ON'
);
}
elseif
(
!
$platform
->
supportsForeignKeyConstraints
())
{
$this
->
markTestSkipped
(
'Only fails on platforms with foreign key constraints.'
);
$this
->
markTestSkipped
(
'Only fails on platforms with foreign key constraints.'
);
}
}
...
@@ -112,7 +116,11 @@ class ExceptionTest extends DbalFunctionalTestCase
...
@@ -112,7 +116,11 @@ class ExceptionTest extends DbalFunctionalTestCase
public
function
testForeignKeyConstraintViolationExceptionOnUpdate
()
:
void
public
function
testForeignKeyConstraintViolationExceptionOnUpdate
()
:
void
{
{
if
(
!
$this
->
connection
->
getDatabasePlatform
()
->
supportsForeignKeyConstraints
())
{
$platform
=
$this
->
connection
->
getDatabasePlatform
();
if
(
$platform
instanceof
SqlitePlatform
)
{
$this
->
connection
->
exec
(
'PRAGMA foreign_keys = ON'
);
}
elseif
(
!
$platform
->
supportsForeignKeyConstraints
())
{
$this
->
markTestSkipped
(
'Only fails on platforms with foreign key constraints.'
);
$this
->
markTestSkipped
(
'Only fails on platforms with foreign key constraints.'
);
}
}
...
@@ -146,7 +154,11 @@ class ExceptionTest extends DbalFunctionalTestCase
...
@@ -146,7 +154,11 @@ class ExceptionTest extends DbalFunctionalTestCase
public
function
testForeignKeyConstraintViolationExceptionOnDelete
()
:
void
public
function
testForeignKeyConstraintViolationExceptionOnDelete
()
:
void
{
{
if
(
!
$this
->
connection
->
getDatabasePlatform
()
->
supportsForeignKeyConstraints
())
{
$platform
=
$this
->
connection
->
getDatabasePlatform
();
if
(
$platform
instanceof
SqlitePlatform
)
{
$this
->
connection
->
exec
(
'PRAGMA foreign_keys = ON'
);
}
elseif
(
!
$platform
->
supportsForeignKeyConstraints
())
{
$this
->
markTestSkipped
(
'Only fails on platforms with foreign key constraints.'
);
$this
->
markTestSkipped
(
'Only fails on platforms with foreign key constraints.'
);
}
}
...
@@ -182,7 +194,9 @@ class ExceptionTest extends DbalFunctionalTestCase
...
@@ -182,7 +194,9 @@ class ExceptionTest extends DbalFunctionalTestCase
{
{
$platform
=
$this
->
connection
->
getDatabasePlatform
();
$platform
=
$this
->
connection
->
getDatabasePlatform
();
if
(
!
$platform
->
supportsForeignKeyConstraints
())
{
if
(
$platform
instanceof
SqlitePlatform
)
{
$this
->
connection
->
exec
(
'PRAGMA foreign_keys = ON'
);
}
elseif
(
!
$platform
->
supportsForeignKeyConstraints
())
{
$this
->
markTestSkipped
(
'Only fails on platforms with foreign key constraints.'
);
$this
->
markTestSkipped
(
'Only fails on platforms with foreign key constraints.'
);
}
}
...
...
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