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
de7797c5
Commit
de7797c5
authored
Mar 12, 2013
by
Benjamin Eberlei
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #282 from deeky666/add-sql-server-charset-collation-support
Add column collation support for SQL Server
parents
0b355ce2
22bd7481
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
109 additions
and
35 deletions
+109
-35
SQLServerPlatform.php
lib/Doctrine/DBAL/Platforms/SQLServerPlatform.php
+57
-1
SQLServerSchemaManager.php
lib/Doctrine/DBAL/Schema/SQLServerSchemaManager.php
+34
-34
SQLServerSchemaManagerTest.php
...sts/DBAL/Functional/Schema/SQLServerSchemaManagerTest.php
+18
-0
No files found.
lib/Doctrine/DBAL/Platforms/SQLServerPlatform.php
View file @
de7797c5
...
@@ -409,7 +409,25 @@ class SQLServerPlatform extends AbstractPlatform
...
@@ -409,7 +409,25 @@ class SQLServerPlatform extends AbstractPlatform
*/
*/
public
function
getListTableColumnsSQL
(
$table
,
$database
=
null
)
public
function
getListTableColumnsSQL
(
$table
,
$database
=
null
)
{
{
return
"exec sp_columns @table_name = '"
.
$table
.
"'"
;
return
"SELECT col.name,
type.name AS type,
col.max_length AS length,
~col.is_nullable AS notnull,
def.definition AS [default],
col.scale,
col.precision,
col.is_identity AS autoincrement,
col.collation_name AS collation
FROM sys.columns AS col
JOIN sys.types AS type
ON col.user_type_id = type.user_type_id
JOIN sys.objects AS obj
ON col.object_id = obj.object_id
LEFT JOIN sys.default_constraints def
ON col.default_object_id = def.object_id
AND col.object_id = def.parent_object_id
WHERE obj.type = 'U'
AND obj.name = '
$table
'"
;
}
}
/**
/**
...
@@ -957,4 +975,42 @@ class SQLServerPlatform extends AbstractPlatform
...
@@ -957,4 +975,42 @@ class SQLServerPlatform extends AbstractPlatform
return
" DEFAULT '"
.
$field
[
'default'
]
.
"'"
;
return
" DEFAULT '"
.
$field
[
'default'
]
.
"'"
;
}
}
/**
* {@inheritdoc}
*/
public
function
getColumnCollationDeclarationSQL
(
$collation
)
{
return
'COLLATE '
.
$collation
;
}
/**
* {@inheritdoc}
*
* Modifies column declaration order as it differs in Microsoft SQL Server.
*/
public
function
getColumnDeclarationSQL
(
$name
,
array
$field
)
{
if
(
isset
(
$field
[
'columnDefinition'
]))
{
$columnDef
=
$this
->
getCustomTypeDeclarationSQL
(
$field
);
}
else
{
$default
=
$this
->
getDefaultValueDeclarationSQL
(
$field
);
$collation
=
(
isset
(
$field
[
'collate'
])
&&
$field
[
'collate'
])
?
' '
.
$this
->
getColumnCollationDeclarationSQL
(
$field
[
'collate'
])
:
''
;
$notnull
=
(
isset
(
$field
[
'notnull'
])
&&
$field
[
'notnull'
])
?
' NOT NULL'
:
''
;
$unique
=
(
isset
(
$field
[
'unique'
])
&&
$field
[
'unique'
])
?
' '
.
$this
->
getUniqueFieldDeclarationSQL
()
:
''
;
$check
=
(
isset
(
$field
[
'check'
])
&&
$field
[
'check'
])
?
' '
.
$field
[
'check'
]
:
''
;
$typeDecl
=
$field
[
'type'
]
->
getSqlDeclaration
(
$field
,
$this
);
$columnDef
=
$typeDecl
.
$collation
.
$default
.
$notnull
.
$unique
.
$check
;
}
return
$name
.
' '
.
$columnDef
;
}
}
}
lib/Doctrine/DBAL/Schema/SQLServerSchemaManager.php
View file @
de7797c5
...
@@ -22,6 +22,7 @@ namespace Doctrine\DBAL\Schema;
...
@@ -22,6 +22,7 @@ namespace Doctrine\DBAL\Schema;
use
Doctrine\DBAL\Events
;
use
Doctrine\DBAL\Events
;
use
Doctrine\DBAL\Event\SchemaIndexDefinitionEventArgs
;
use
Doctrine\DBAL\Event\SchemaIndexDefinitionEventArgs
;
use
Doctrine\DBAL\Driver\SQLSrv\SQLSrvException
;
use
Doctrine\DBAL\Driver\SQLSrv\SQLSrvException
;
use
Doctrine\DBAL\Types\Type
;
/**
/**
* SQL Server Schema Manager
* SQL Server Schema Manager
...
@@ -44,69 +45,68 @@ class SQLServerSchemaManager extends AbstractSchemaManager
...
@@ -44,69 +45,68 @@ class SQLServerSchemaManager extends AbstractSchemaManager
}
}
/**
/**
*
@override
*
{@inheritdoc}
*/
*/
protected
function
_getPortableTableColumnDefinition
(
$tableColumn
)
protected
function
_getPortableTableColumnDefinition
(
$tableColumn
)
{
{
$dbType
=
strtolower
(
$tableColumn
[
'TYPE_NAME'
]);
$dbType
=
$tableColumn
[
'type'
];
$fixed
=
null
;
$autoincrement
=
false
;
$length
=
(
int
)
$tableColumn
[
'length'
];
if
(
stripos
(
$dbType
,
'identity'
))
{
$default
=
$tableColumn
[
'default'
];
$dbType
=
trim
(
str_ireplace
(
'identity'
,
''
,
$dbType
));
$autoincrement
=
true
;
}
$type
=
array
();
$unsigned
=
$fixed
=
null
;
if
(
!
isset
(
$tableColumn
[
'name'
]))
{
if
(
!
isset
(
$tableColumn
[
'name'
]))
{
$tableColumn
[
'name'
]
=
''
;
$tableColumn
[
'name'
]
=
''
;
}
}
$default
=
$tableColumn
[
'COLUMN_DEF'
];
while
(
$default
!=
(
$default2
=
preg_replace
(
"/^\((.*)\)$/"
,
'$1'
,
$default
)))
{
while
(
$default
!=
(
$default2
=
preg_replace
(
"/^\((.*)\)$/"
,
'$1'
,
$default
)))
{
$default
=
trim
(
$default2
,
"'"
);
$default
=
trim
(
$default2
,
"'"
);
}
}
$length
=
(
int
)
$tableColumn
[
'LENGTH'
];
switch
(
$dbType
)
{
case
'nchar'
:
case
'nvarchar'
:
case
'ntext'
:
// Unicode data requires 2 bytes per character
$length
=
$length
/
2
;
break
;
case
'varchar'
:
// TEXT type is returned as VARCHAR(MAX) with a length of -1
if
(
$length
==
-
1
)
{
$dbType
=
'text'
;
}
break
;
}
$type
=
$this
->
_platform
->
getDoctrineTypeMapping
(
$dbType
);
$type
=
$this
->
_platform
->
getDoctrineTypeMapping
(
$dbType
);
switch
(
$type
)
{
switch
(
$type
)
{
case
'char'
:
case
'char'
:
if
(
$tableColumn
[
'LENGTH'
]
==
'1'
)
{
$type
=
'boolean'
;
if
(
preg_match
(
'/^(is|has)/'
,
$tableColumn
[
'name'
]))
{
$type
=
array_reverse
(
$type
);
}
}
$fixed
=
true
;
$fixed
=
true
;
break
;
break
;
case
'text'
:
case
'text'
:
$fixed
=
false
;
$fixed
=
false
;
break
;
break
;
}
}
switch
(
$dbType
)
{
case
'nchar'
:
case
'nvarchar'
:
case
'ntext'
:
// Unicode data requires 2 bytes per character
$length
=
$length
/
2
;
break
;
}
$options
=
array
(
$options
=
array
(
'length'
=>
(
$length
==
0
||
!
in_array
(
$type
,
array
(
'text'
,
'string'
)))
?
null
:
$length
,
'length'
=>
(
$length
==
0
||
!
in_array
(
$type
,
array
(
'text'
,
'string'
)))
?
null
:
$length
,
'unsigned'
=>
(
bool
)
$unsigned
,
'unsigned'
=>
false
,
'fixed'
=>
(
bool
)
$fixed
,
'fixed'
=>
(
bool
)
$fixed
,
'default'
=>
$default
!==
'NULL'
?
$default
:
null
,
'default'
=>
$default
!==
'NULL'
?
$default
:
null
,
'notnull'
=>
(
bool
)
(
$tableColumn
[
'IS_NULLABLE'
]
!=
'YES'
)
,
'notnull'
=>
(
bool
)
$tableColumn
[
'notnull'
]
,
'scale'
=>
$tableColumn
[
'
SCALE
'
],
'scale'
=>
$tableColumn
[
'
scale
'
],
'precision'
=>
$tableColumn
[
'
PRECISION
'
],
'precision'
=>
$tableColumn
[
'
precision
'
],
'autoincrement'
=>
$autoincrement
,
'autoincrement'
=>
(
bool
)
$tableColumn
[
'autoincrement'
]
,
);
);
return
new
Column
(
$tableColumn
[
'COLUMN_NAME'
],
\Doctrine\DBAL\Types\Type
::
getType
(
$type
),
$options
);
$platformOptions
=
array
(
'collate'
=>
$tableColumn
[
'collation'
]
==
'NULL'
?
null
:
$tableColumn
[
'collation'
]
);
$column
=
new
Column
(
$tableColumn
[
'name'
],
Type
::
getType
(
$type
),
$options
);
$column
->
setPlatformOptions
(
$platformOptions
);
return
$column
;
}
}
/**
/**
...
...
tests/Doctrine/Tests/DBAL/Functional/Schema/SQLServerSchemaManagerTest.php
View file @
de7797c5
...
@@ -34,4 +34,22 @@ class SQLServerSchemaManagerTest extends SchemaManagerFunctionalTestCase
...
@@ -34,4 +34,22 @@ class SQLServerSchemaManagerTest extends SchemaManagerFunctionalTestCase
$columns
=
$this
->
_sm
->
listTableColumns
(
'sqlsrv_drop_column'
);
$columns
=
$this
->
_sm
->
listTableColumns
(
'sqlsrv_drop_column'
);
$this
->
assertEquals
(
1
,
count
(
$columns
));
$this
->
assertEquals
(
1
,
count
(
$columns
));
}
}
public
function
testCollationCharset
()
{
$table
=
new
\Doctrine\DBAL\Schema\Table
(
$tableName
=
'test_collation_charset'
);
$column
=
$table
->
addColumn
(
$columnName
=
'test'
,
'string'
);
$this
->
_sm
->
dropAndCreateTable
(
$table
);
$columns
=
$this
->
_sm
->
listTableColumns
(
$tableName
);
$this
->
assertTrue
(
$columns
[
$columnName
]
->
hasPlatformOption
(
'collate'
));
// SQL Server should report a default collation on the column
$column
->
setPlatformOption
(
'collate'
,
$collation
=
'Icelandic_CS_AS'
);
$this
->
_sm
->
dropAndCreateTable
(
$table
);
$columns
=
$this
->
_sm
->
listTableColumns
(
$tableName
);
$this
->
assertEquals
(
$collation
,
$columns
[
$columnName
]
->
getPlatformOption
(
'collate'
));
}
}
}
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