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
15466637
Commit
15466637
authored
Dec 10, 2009
by
beberlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] DDC-169 - Some refactorings
parent
59a17eb5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
4 deletions
+20
-4
AbstractPlatform.php
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+10
-0
OraclePlatform.php
lib/Doctrine/DBAL/Platforms/OraclePlatform.php
+10
-0
AbstractAsset.php
lib/Doctrine/DBAL/Schema/AbstractAsset.php
+0
-4
No files found.
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
View file @
15466637
...
@@ -1772,6 +1772,16 @@ abstract class AbstractPlatform
...
@@ -1772,6 +1772,16 @@ abstract class AbstractPlatform
return
$schemaElementName
;
return
$schemaElementName
;
}
}
/**
* Maximum length of any given databse identifier, like tables or column names.
*
* @return int
*/
public
function
getMaxIdentifierLength
()
{
return
63
;
}
/**
/**
* Get the insert sql for an empty insert statement
* Get the insert sql for an empty insert statement
*
*
...
...
lib/Doctrine/DBAL/Platforms/OraclePlatform.php
View file @
15466637
...
@@ -603,6 +603,16 @@ END;';
...
@@ -603,6 +603,16 @@ END;';
return
$schemaElementName
;
return
$schemaElementName
;
}
}
/**
* Maximum length of any given databse identifier, like tables or column names.
*
* @return int
*/
public
function
getMaxIdentifierLength
()
{
return
30
;
}
/**
/**
* Whether the platform supports sequences.
* Whether the platform supports sequences.
*
*
...
...
lib/Doctrine/DBAL/Schema/AbstractAsset.php
View file @
15466637
...
@@ -35,10 +35,6 @@ namespace Doctrine\DBAL\Schema;
...
@@ -35,10 +35,6 @@ namespace Doctrine\DBAL\Schema;
*/
*/
abstract
class
AbstractAsset
abstract
class
AbstractAsset
{
{
const
CASE_UPPER
=
"upper"
;
const
CASE_LOWER
=
"lower"
;
const
CASE_KEEP
=
"keep"
;
/**
/**
* @var string
* @var string
*/
*/
...
...
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