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
bb873455
Commit
bb873455
authored
Aug 29, 2013
by
dazz
Committed by
Benjamin Eberlei
Nov 13, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DBAL-407] Implemented not null exception detection for sqlite
parent
5d2d88c0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
DBALException.php
lib/Doctrine/DBAL/DBALException.php
+1
-0
Driver.php
lib/Doctrine/DBAL/Driver/PDOSqlite/Driver.php
+3
-0
ExceptionTest.php
tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php
+18
-1
No files found.
lib/Doctrine/DBAL/DBALException.php
View file @
bb873455
...
...
@@ -25,6 +25,7 @@ class DBALException extends \Exception
const
ERROR_UNKNOWN_TABLE
=
2
;
const
ERROR_TABLE_ALREADY_EXISTS
=
3
;
const
ERROR_FOREIGN_KEY_CONSTRAINT
=
4
;
const
ERROR_NOT_NULL
=
5
;
/**
* @param string $method
...
...
lib/Doctrine/DBAL/Driver/PDOSqlite/Driver.php
View file @
bb873455
...
...
@@ -124,6 +124,9 @@ class Driver implements \Doctrine\DBAL\Driver
if
(
strpos
(
$exception
->
getMessage
(),
'must be unique'
)
!==
false
)
{
return
DBALException
::
ERROR_DUPLICATE_KEY
;
}
if
(
strpos
(
$exception
->
getMessage
(),
'may not be NULL'
)
!==
false
)
{
return
DBALException
::
ERROR_NOT_NULL
;
}
case
'HY000'
:
if
(
strpos
(
$exception
->
getMessage
(),
'no such table:'
)
!==
false
)
{
return
DBALException
::
ERROR_UNKNOWN_TABLE
;
...
...
tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php
View file @
bb873455
...
...
@@ -9,7 +9,6 @@ class ExceptionTest extends \Doctrine\Tests\DbalFunctionalTestCase
{
public
function
testDuplicateKeyException
()
{
/* @var $sm \Doctrine\DBAL\Schema\AbstractSchemaManager */
$table
=
new
\Doctrine\DBAL\Schema\Table
(
"duplicatekey_table"
);
$table
->
addColumn
(
'id'
,
'integer'
,
array
());
$table
->
setPrimaryKey
(
array
(
'id'
));
...
...
@@ -54,6 +53,7 @@ class ExceptionTest extends \Doctrine\Tests\DbalFunctionalTestCase
}
$schema
=
new
\Doctrine\DBAL\Schema\Schema
();
$table
=
$schema
->
createTable
(
"constraint_error_table"
);
$table
->
addColumn
(
'id'
,
'integer'
,
array
());
$table
->
setPrimaryKey
(
array
(
'id'
));
...
...
@@ -75,6 +75,23 @@ class ExceptionTest extends \Doctrine\Tests\DbalFunctionalTestCase
$this
->
_conn
->
delete
(
'constraint_error_table'
,
array
(
'id'
=>
1
));
}
public
function
testNotNullException
()
{
$schema
=
new
\Doctrine\DBAL\Schema\Schema
();
$table
=
$schema
->
createTable
(
"notnull_table"
);
$table
->
addColumn
(
'id'
,
'integer'
,
array
());
$table
->
addColumn
(
'value'
,
'integer'
,
array
(
'notnull'
=>
true
));
$table
->
setPrimaryKey
(
array
(
'id'
));
foreach
(
$schema
->
toSql
(
$this
->
_conn
->
getDatabasePlatform
())
AS
$sql
)
{
$this
->
_conn
->
executeQuery
(
$sql
);
}
$this
->
setExpectedException
(
'\Doctrine\DBAL\DBALException'
,
null
,
DBALException
::
ERROR_NOT_NULL
);
$this
->
_conn
->
insert
(
"notnull_table"
,
array
(
'id'
=>
1
));
}
protected
function
onNotSuccessfulTest
(
\Exception
$e
)
{
var_dump
(
$e
);
...
...
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