PHP Class CI_DB_oci8_forge, TastyIgniter

Inheritance: extends CI_DB_forge
Datei anzeigen Open project: tastyigniter/tastyigniter

Protected Properties

Property Type Description
$_create_database string CREATE DATABASE statement
$_drop_database string DROP DATABASE statement
$_drop_table_if string DROP TABLE IF statement
$_unsigned boolean | array UNSIGNED support

Protected Methods

Method Description
_alter_table ( string $alter_type, string $table, mixed $field ) : string | string[] ALTER TABLE
_attr_auto_increment ( &$attributes, &$field ) : void Field attribute AUTO_INCREMENT

Method Details

_alter_table() protected method

ALTER TABLE
protected _alter_table ( string $alter_type, string $table, mixed $field ) : string | string[]
$alter_type string ALTER type
$table string Table name
$field mixed Column definition
return string | string[]

_attr_auto_increment() protected method

Field attribute AUTO_INCREMENT
protected _attr_auto_increment ( &$attributes, &$field ) : void
return void

Property Details

$_create_database protected_oe property

CREATE DATABASE statement
protected string $_create_database
return string

$_drop_database protected_oe property

DROP DATABASE statement
protected string $_drop_database
return string

$_drop_table_if protected_oe property

DROP TABLE IF statement
protected string $_drop_table_if
return string

$_unsigned protected_oe property

UNSIGNED support
protected bool|array $_unsigned
return boolean | array