PHP Класс SqlHandler, PHP-Fusion

Показать файл Открыть проект Примеры использования класса

Защищенные методы

Метод Описание
add_column ( $table_name, $new_column_name, $field_attributes ) Add column to a specific table
build_table ( $new_table, $primary_column ) : boolean | mixed | null | PDOStatement | resource Function to build a new table
drop_column ( $table_name, $old_column_name ) Drop column of a table
drop_table ( $old_table ) Drop table
move_column ( $old_table, $new_table, $column_name ) Move a single column from one table to another
rename_column ( $table_name, $old_column_name, $new_column_name, $field_attributes ) : boolean | mixed | PDOStatement | resource Function to rename column name
transfer_table ( $old_table, $new_table ) Move old table to new table.

Описание методов

add_column() защищенный статический Метод

Add column to a specific table
protected static add_column ( $table_name, $new_column_name, $field_attributes )

build_table() защищенный статический Метод

Function to build a new table
protected static build_table ( $new_table, $primary_column ) : boolean | mixed | null | PDOStatement | resource
$primary_column
Результат boolean | mixed | null | PDOStatement | resource

drop_column() защищенный статический Метод

Drop column of a table
protected static drop_column ( $table_name, $old_column_name )
$table_name
$old_column_name

drop_table() защищенный статический Метод

Drop table
protected static drop_table ( $old_table )

move_column() защищенный статический Метод

Move a single column from one table to another
protected static move_column ( $old_table, $new_table, $column_name )
$old_table
$new_table
$column_name

rename_column() защищенный статический Метод

Function to rename column name
protected static rename_column ( $table_name, $old_column_name, $new_column_name, $field_attributes ) : boolean | mixed | PDOStatement | resource
$table_name
$old_column_name
$new_column_name
Результат boolean | mixed | PDOStatement | resource

transfer_table() защищенный статический Метод

Move old table to new table.
protected static transfer_table ( $old_table, $new_table )
$old_table
$new_table