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
4b43a8c2
Commit
4b43a8c2
authored
Feb 17, 2009
by
jwage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Removing index, fk and table name formatting from DBAL configuration class
parent
9dfab03e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
42 deletions
+6
-42
Configuration.php
lib/Doctrine/DBAL/Configuration.php
+6
-42
No files found.
lib/Doctrine/DBAL/Configuration.php
View file @
4b43a8c2
...
...
@@ -48,63 +48,27 @@ class Configuration
public
function
__construct
()
{
$this
->
_attributes
=
array
(
'quoteIdentifiers'
=>
false
,
'indexNameFormat'
=>
'%s_idx'
,
'sequenceNameFormat'
=>
'%s_seq'
,
'tableNameFormat'
=>
'%s'
'quoteIdentifiers'
=>
false
);
}
public
function
getQuoteIdentifiers
()
{
return
$this
->
_attributes
[
'quoteIdentifiers'
];
}
public
function
setQuoteIdentifiers
(
$bool
)
{
$this
->
_attributes
[
'quoteIdentifiers'
]
=
(
bool
)
$bool
;
}
public
function
getIndexNameFormat
()
{
return
$this
->
_attributes
[
'indexNameFormat'
];
}
public
function
setIndexNameFormat
(
$format
)
{
//TODO: check format?
$this
->
_attributes
[
'indexNameFormat'
]
=
$format
;
}
public
function
getSequenceNameFormat
()
{
return
$this
->
_attributes
[
'sequenceNameFormat'
];
$this
->
_attributes
[
'quoteIdentifiers'
]
=
(
bool
)
$bool
;
}
public
function
setSequenceNameFormat
(
$format
)
{
//TODO: check format?
$this
->
_attributes
[
'sequenceNameFormat'
]
=
$format
;
}
public
function
getTableNameFormat
()
{
return
$this
->
_attributes
[
'tableNameFormat'
];
}
public
function
setTableNameFormat
(
$format
)
{
//TODO: check format?
$this
->
_attributes
[
'tableNameFormat'
]
=
$format
;
}
public
function
setCustomTypes
(
array
$types
)
{
foreach
(
$types
as
$name
=>
$typeClassName
)
{
Type
::
addCustomType
(
$name
,
$typeClassName
);
}
}
public
function
setTypeOverrides
(
array
$overrides
)
{
foreach
(
$override
as
$name
=>
$typeClassName
)
{
...
...
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