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
5744f045
Commit
5744f045
authored
Feb 11, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated doc blocks
parent
89a36ca9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
0 deletions
+11
-0
Firebird.php
lib/Doctrine/DataDict/Firebird.php
+1
-0
Mssql.php
lib/Doctrine/DataDict/Mssql.php
+1
-0
Mysql.php
lib/Doctrine/DataDict/Mysql.php
+2
-0
Oracle.php
lib/Doctrine/DataDict/Oracle.php
+3
-0
Pgsql.php
lib/Doctrine/DataDict/Pgsql.php
+3
-0
Sqlite.php
lib/Doctrine/DataDict/Sqlite.php
+1
-0
No files found.
lib/Doctrine/DataDict/Firebird.php
View file @
5744f045
...
...
@@ -21,6 +21,7 @@
Doctrine
::
autoload
(
'Doctrine_DataDict'
);
/**
* @package Doctrine
* @subpackage Doctrine_DataDict
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lorenzo Alberton <l.alberton@quipo.it> (PEAR MDB2 Interbase driver)
...
...
lib/Doctrine/DataDict/Mssql.php
View file @
5744f045
...
...
@@ -21,6 +21,7 @@
Doctrine
::
autoload
(
'Doctrine_DataDict'
);
/**
* @package Doctrine
* @subpackage Doctrine_DataDict
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
...
...
lib/Doctrine/DataDict/Mysql.php
View file @
5744f045
...
...
@@ -21,6 +21,7 @@
Doctrine
::
autoload
(
'Doctrine_DataDict'
);
/**
* @package Doctrine
* @subpackage Doctrine_DataDict
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
...
...
@@ -207,6 +208,7 @@ class Doctrine_DataDict_Mysql extends Doctrine_DataDict
case
'timestamp'
:
return
'DATETIME'
;
case
'float'
:
case
'double'
:
return
'DOUBLE'
;
case
'decimal'
:
$length
=
!
empty
(
$field
[
'length'
])
?
$field
[
'length'
]
:
18
;
...
...
lib/Doctrine/DataDict/Oracle.php
View file @
5744f045
...
...
@@ -18,8 +18,10 @@
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_DataDict'
);
/**
* @package Doctrine
* @subpackage Doctrine_DataDict
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @version $Revision$
...
...
@@ -84,6 +86,7 @@ class Doctrine_DataDict_Oracle extends Doctrine_DataDict
case
'timestamp'
:
return
'DATE'
;
case
'float'
:
case
'double'
:
return
'NUMBER'
;
case
'decimal'
:
return
'NUMBER(*,'
.
$this
->
conn
->
options
[
'decimal_places'
]
.
')'
;
...
...
lib/Doctrine/DataDict/Pgsql.php
View file @
5744f045
...
...
@@ -18,8 +18,10 @@
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
Doctrine
::
autoload
(
'Doctrine_DataDict'
);
/**
* @package Doctrine
* @subpackage Doctrine_DataDict
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Paul Cooper <pgc@ucecom.com>
...
...
@@ -408,6 +410,7 @@ class Doctrine_DataDict_Pgsql extends Doctrine_DataDict
case
'timestamp'
:
return
'TIMESTAMP without time zone'
;
case
'float'
:
case
'double'
:
return
'FLOAT8'
;
case
'decimal'
:
$length
=
!
empty
(
$field
[
'length'
])
?
$field
[
'length'
]
:
18
;
...
...
lib/Doctrine/DataDict/Sqlite.php
View file @
5744f045
...
...
@@ -21,6 +21,7 @@
Doctrine
::
autoload
(
'Doctrine_DataDict'
);
/**
* @package Doctrine
* @subpackage Doctrine_DataDict
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
...
...
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