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
be5750ae
Commit
be5750ae
authored
Feb 10, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
e9d7274f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
6 deletions
+21
-6
Firebird.php
lib/Doctrine/DataDict/Firebird.php
+4
-1
Mssql.php
lib/Doctrine/DataDict/Mssql.php
+4
-1
Mysql.php
lib/Doctrine/DataDict/Mysql.php
+1
-1
Oracle.php
lib/Doctrine/DataDict/Oracle.php
+4
-1
Pgsql.php
lib/Doctrine/DataDict/Pgsql.php
+4
-1
Sqlite.php
lib/Doctrine/DataDict/Sqlite.php
+4
-1
No files found.
lib/Doctrine/DataDict/Firebird.php
View file @
be5750ae
...
...
@@ -178,7 +178,10 @@ class Doctrine_DataDict_Firebird extends Doctrine_DataDict
throw
new
Doctrine_DataDict_Exception
(
'unknown database attribute type: '
.
$dbType
);
}
return
array
(
$type
,
$length
,
$unsigned
,
$fixed
);
return
array
(
'type'
=>
$type
,
'length'
=>
$length
,
'unsigned'
=>
$unsigned
,
'fixed'
=>
$fixed
);
}
/**
* Obtain DBMS specific SQL code portion needed to set the CHARACTER SET
...
...
lib/Doctrine/DataDict/Mssql.php
View file @
be5750ae
...
...
@@ -174,6 +174,9 @@ class Doctrine_DataDict_Mssql extends Doctrine_DataDict
throw
new
Doctrine_DataDict_Exception
(
'unknown database attribute type: '
.
$db_type
);
}
return
array
(
$type
,
$length
,
$unsigned
,
$fixed
);
return
array
(
'type'
=>
$type
,
'length'
=>
$length
,
'unsigned'
=>
$unsigned
,
'fixed'
=>
$fixed
);
}
}
lib/Doctrine/DataDict/Mysql.php
View file @
be5750ae
...
...
@@ -363,7 +363,7 @@ class Doctrine_DataDict_Mysql extends Doctrine_DataDict
$length
=
((
int
)
$length
==
0
)
?
null
:
(
int
)
$length
;
return
array
(
$type
,
$length
,
$unsigned
,
$fixed
);
return
array
(
'type'
=>
$type
,
'length'
=>
$length
,
'unsigned'
=>
$unsigned
,
'fixed'
=>
$fixed
);
}
/**
* Obtain DBMS specific SQL code portion needed to set the CHARACTER SET
...
...
lib/Doctrine/DataDict/Oracle.php
View file @
be5750ae
...
...
@@ -180,6 +180,9 @@ class Doctrine_DataDict_Oracle extends Doctrine_DataDict
throw
new
Doctrine_DataDict_Exception
(
'unknown database attribute type: '
.
$dbType
);
}
return
array
(
$type
,
$length
,
$unsigned
,
$fixed
);
return
array
(
'type'
=>
$type
,
'length'
=>
$length
,
'unsigned'
=>
$unsigned
,
'fixed'
=>
$fixed
);
}
}
lib/Doctrine/DataDict/Pgsql.php
View file @
be5750ae
...
...
@@ -541,7 +541,10 @@ class Doctrine_DataDict_Pgsql extends Doctrine_DataDict
throw
new
Doctrine_DataDict_Exception
(
'unknown database attribute type: '
.
$db_type
);
}
return
array
(
$type
,
$length
,
$unsigned
,
$fixed
);
return
array
(
'type'
=>
$type
,
'length'
=>
$length
,
'unsigned'
=>
$unsigned
,
'fixed'
=>
$fixed
);
}
/**
* Obtain DBMS specific SQL code portion needed to declare an integer type
...
...
lib/Doctrine/DataDict/Sqlite.php
View file @
be5750ae
...
...
@@ -231,7 +231,10 @@ class Doctrine_DataDict_Sqlite extends Doctrine_DataDict
throw
new
Doctrine_DataDict_Exception
(
'unknown database attribute type: '
.
$dbType
);
}
return
array
(
$type
,
$length
,
$unsigned
,
$fixed
);
return
array
(
'type'
=>
$type
,
'length'
=>
$length
,
'unsigned'
=>
$unsigned
,
'fixed'
=>
$fixed
);
}
/**
* Obtain DBMS specific SQL code portion needed to declare an integer type
...
...
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