\Query\Driver\UtilAbstract_Util

Abstract class defining database / table creation methods

Summary

Methods
Properties
Constants
__construct()
get_driver()
create_table()
delete_table()
backup_structure()
backup_data()
quote_ident()
quote_table()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
$conn
N/A

Properties

$conn

$conn

Reference to the current connection object

Methods

__construct()

__construct(\Query\Driver\Driver_Interface $conn)

Save a reference to the connection object for later use

Parameters

\Query\Driver\Driver_Interface $conn

create_table()

create_table(string $name, array $fields, array $constraints, bool $if_not_exists) : string

Convenience public function to generate sql for creating a db table

Parameters

string $name
array $fields
array $constraints
bool $if_not_exists

Returns

string

delete_table()

delete_table(string $name) : string

Drop the selected table

Parameters

string $name

Returns

string

backup_structure()

backup_structure() : string

Return an SQL file with the database table structure

Returns

string

backup_data()

backup_data() : string

Return an SQL file with the database data as insert statements

Returns

string

quote_ident()

quote_ident(string $sql) : string

Parameters

string $sql

Returns

string

quote_table()

quote_table(string $sql) : string

Parameters

string $sql

Returns

string