14 public function tableName( $name, $format =
'quoted' ) {
15 return $this->
__call( __FUNCTION__, func_get_args() );
19 return $this->
__call( __FUNCTION__, func_get_args() );
23 return $this->
__call( __FUNCTION__, func_get_args() );
28 callable $lineCallback =
null,
29 callable $resultCallback =
null,
31 callable $inputCallback =
null
35 return $this->
__call( __FUNCTION__, func_get_args() );
40 callable $lineCallback =
null,
41 callable $resultCallback =
null,
43 callable $inputCallback =
null
47 return $this->
__call( __FUNCTION__, func_get_args() );
50 public function dropTable( $table, $fname = __METHOD__ ) {
53 return $this->
__call( __FUNCTION__, func_get_args() );
56 public function truncate( $tables, $fname = __METHOD__ ) {
59 return $this->
__call( __FUNCTION__, func_get_args() );
65 return $this->
__call( __FUNCTION__, func_get_args() );
68 public function listViews( $prefix =
null, $fname = __METHOD__ ) {
69 return $this->
__call( __FUNCTION__, func_get_args() );
73 return $this->
__call( __FUNCTION__, func_get_args() );
77 return $this->
__call( __FUNCTION__, [ &$sql, &$newLine ] );
81 $oldName, $newName, $temporary =
false, $fname = __METHOD__
85 return $this->
__call( __FUNCTION__, func_get_args() );
89 return $this->
__call( __FUNCTION__, func_get_args() );
92 public function lockTables( array $read, array $write, $method ) {
95 return $this->
__call( __FUNCTION__, func_get_args() );
101 return $this->
__call( __FUNCTION__, func_get_args() );
104 public function indexUnique( $table, $index, $fname = __METHOD__ ) {
105 return $this->
__call( __FUNCTION__, func_get_args() );
108 public function listTables( $prefix =
null, $fname = __METHOD__ ) {
109 return $this->
__call( __FUNCTION__, func_get_args() );
113 return $this->
__call( __FUNCTION__, func_get_args() );
120class_alias( MaintainableDBConnRef::class,
'MaintainableDBConnRef' );
Helper class to handle automatically marking connections as reusable (via RAII pattern) as well handl...
tableLocksHaveTransactionScope()
Checks if table locks acquired by lockTables() are transaction-bound in their scope.
dropTable( $table, $fname=__METHOD__)
Delete a table.
duplicateTableStructure( $oldName, $newName, $temporary=false, $fname=__METHOD__)
Creates a new table with structure copied from existing table.
deadlockLoop(... $args)
Perform a deadlock-prone transaction.
textFieldSize( $table, $field)
Returns the size of a text field, or -1 for "unlimited".
listTables( $prefix=null, $fname=__METHOD__)
List all tables on the database.
listViews( $prefix=null, $fname=__METHOD__)
Lists all the VIEWs in the database.
truncate( $tables, $fname=__METHOD__)
Delete all data in a table(s) and reset any sequences owned by that table(s)
fieldInfo( $table, $field)
Get information about a field Returns false if the field doesn't exist.
sourceStream( $fp, callable $lineCallback=null, callable $resultCallback=null, $fname=__METHOD__, callable $inputCallback=null)
Read and execute commands from an open file handle.
indexUnique( $table, $index, $fname=__METHOD__)
Determines if a given index is unique.
lockTables(array $read, array $write, $method)
Lock specific tables.
tableNames(... $tables)
Fetch a number of table names into an array This is handy when you need to construct SQL for joins.
unlockTables( $method)
Unlock all tables locked via lockTables()
streamStatementEnd(&$sql, &$newLine)
Called by sourceStream() to check if we've reached a statement end.
tableName( $name, $format='quoted')
Format a table name ready for use in constructing an SQL query.
tableNamesN(... $tables)
Fetch a number of table names into an zero-indexed numerical array This is handy when you need to con...
sourceFile( $filename, callable $lineCallback=null, callable $resultCallback=null, $fname=false, callable $inputCallback=null)
Read and execute SQL commands from a file.
Advanced database interface for IDatabase handles that include maintenance methods.