Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
PSDI Army
yii2
Commits
b00a8476
Commit
b00a8476
authored
Dec 02, 2013
by
p0larbeer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create ColumnSchema.php
parent
f473abe1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
88 additions
and
0 deletions
+88
-0
ColumnSchema.php
framework/yii/db/oci/ColumnSchema.php
+88
-0
No files found.
framework/yii/db/oci/ColumnSchema.php
0 → 100644
View file @
b00a8476
<?php
namespace
yii\db\oci
;
class
ColumnSchema
extends
\yii\db\ColumnSchema
{
/**
* Initializes the column with its DB type and default value.
* This sets up the column's PHP type, size, precision, scale as well as default value.
* @param string $dbType the column's DB type
* @param mixed $defaultValue the default value
*/
public
function
extract
(
$dbType
,
$defaultValue
)
{
$this
->
dbType
=
$dbType
;
$this
->
extractType
(
$dbType
);
$this
->
extractLimit
(
$dbType
);
if
(
$defaultValue
!==
null
)
$this
->
extractDefault
(
$defaultValue
);
}
/**
* Extracts the PHP type from DB type.
* @param string $dbType DB type
* @return string
*/
protected
function
extractOraType
(
$dbType
){
if
(
strpos
(
$dbType
,
'FLOAT'
)
!==
false
)
return
'double'
;
if
(
strpos
(
$dbType
,
'NUMBER'
)
!==
false
||
strpos
(
$dbType
,
'INTEGER'
)
!==
false
)
{
if
(
strpos
(
$dbType
,
'('
)
&&
preg_match
(
'/\((.*)\)/'
,
$dbType
,
$matches
))
{
$values
=
explode
(
','
,
$matches
[
1
]);
if
(
isset
(
$values
[
1
])
and
(((
int
)
$values
[
1
])
>
0
))
return
'double'
;
else
return
'integer'
;
}
else
return
'double'
;
}
else
return
'string'
;
}
/**
* Extracts the PHP type from DB type.
* @param string $dbType DB type
*/
protected
function
extractType
(
$dbType
)
{
$this
->
type
=
$this
->
extractOraType
(
$dbType
);
}
/**
* Extracts size, precision and scale information from column's DB type.
* @param string $dbType the column's DB type
*/
protected
function
extractLimit
(
$dbType
)
{
if
(
strpos
(
$dbType
,
'('
)
&&
preg_match
(
'/\((.*)\)/'
,
$dbType
,
$matches
))
{
$values
=
explode
(
','
,
$matches
[
1
]);
$this
->
size
=
$this
->
precision
=
(
int
)
$values
[
0
];
if
(
isset
(
$values
[
1
]))
$this
->
scale
=
(
int
)
$values
[
1
];
}
}
/**
* Extracts the default value for the column.
* The value is typecasted to correct PHP type.
* @param mixed $defaultValue the default value obtained from metadata
*/
protected
function
extractDefault
(
$defaultValue
)
{
if
(
stripos
(
$defaultValue
,
'timestamp'
)
!==
false
)
{
$this
->
defaultValue
=
null
;
}
else
{
$this
->
defaultValue
=
$this
->
typecast
(
$defaultValue
);
}
}
}
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