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
31da3a0b
Commit
31da3a0b
authored
Dec 23, 2019
by
Benjamin Morel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support ForeignKeyConstraintViolationException in SQLite
parent
1a9812bd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
AbstractSQLiteDriver.php
lib/Doctrine/DBAL/Driver/AbstractSQLiteDriver.php
+4
-0
AbstractSQLiteDriverTest.php
...s/Doctrine/Tests/DBAL/Driver/AbstractSQLiteDriverTest.php
+3
-0
No files found.
lib/Doctrine/DBAL/Driver/AbstractSQLiteDriver.php
View file @
31da3a0b
...
@@ -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 @
31da3a0b
...
@@ -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'
],
],
],
...
...
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