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
f1b64f60
Commit
f1b64f60
authored
Jun 26, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4070 from Sanya1991/master
Oracle Schema fix
parents
0ff0f9d3
332f2a07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
2 deletions
+51
-2
Schema.php
framework/db/oci/Schema.php
+51
-2
No files found.
framework/db/oci/Schema.php
View file @
f1b64f60
...
...
@@ -20,6 +20,19 @@ use yii\db\ColumnSchema;
*/
class
Schema
extends
\yii\db\Schema
{
const
TYPE_PK
=
'NUMBER(10) NOT NULL PRIMARY KEY'
;
const
TYPE_STRING
=
'VARCHAR2(255)'
;
const
TYPE_TEXT
=
'CLOB'
;
const
TYPE_INTEGER
=
'NUMBER(10)'
;
const
TYPE_FLOAT
=
'NUMBER'
;
const
TYPE_DECIMAL
=
'NUMBER'
;
const
TYPE_DATETIME
=
'TIMESTAMP'
;
const
TYPE_TIMESTAMP
=
'TIMESTAMP'
;
const
TYPE_TIME
=
'TIMESTAMP'
;
const
TYPE_DATE
=
'DATE'
;
const
TYPE_BINARY
=
'BLOB'
;
const
TYPE_BOOLEAN
=
'NUMBER(1)'
;
const
TYPE_MONEY
=
'NUMBER(19,4)'
;
/**
* @inheritdoc
*/
...
...
@@ -151,14 +164,50 @@ EOD;
$table
->
columns
[
$c
->
name
]
=
$c
;
if
(
$c
->
isPrimaryKey
)
{
$table
->
primaryKey
[]
=
$c
->
name
;
$table
->
sequenceName
=
''
;
$table
->
sequenceName
=
$this
->
getTableSequenceName
(
$table
->
name
)
;
$c
->
autoIncrement
=
true
;
}
}
return
true
;
}
/**
* Sequence name of table
*
* @param $tablename
* @internal param \yii\db\TableSchema $table ->name the table schema
* @return string whether the sequence exists
*/
protected
function
getTableSequenceName
(
$tablename
){
$seq_name_sql
=
"select ud.referenced_name as sequence_name
from user_dependencies ud
join user_triggers ut on (ut.trigger_name = ud.name)
where ut.table_name='
{
$tablename
}
'
and ud.type='TRIGGER'
and ud.referenced_type='SEQUENCE'"
;
return
$this
->
db
->
createCommand
(
$seq_name_sql
)
->
queryScalar
();
}
/*
* @Overrides method in class 'Schema'
* @see http://www.php.net/manual/en/function.PDO-lastInsertId.php -> Oracle does not support this
*
* Returns the ID of the last inserted row or sequence value.
* @param string $sequenceName name of the sequence object (required by some DBMS)
* @return string the row ID of the last row inserted, or the last value retrieved from the sequence object
* @throws InvalidCallException if the DB connection is not active
*/
public
function
getLastInsertID
(
$sequenceName
=
''
)
{
if
(
$this
->
db
->
isActive
)
{
return
$this
->
db
->
createCommand
(
"SELECT
{
$sequenceName
}
.CURRVAL FROM DUAL"
)
->
queryScalar
();
}
else
{
throw
new
InvalidCallException
(
'DB Connection is not active.'
);
}
}
protected
function
createColumn
(
$column
)
{
$c
=
new
ColumnSchema
();
...
...
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