Function __global->_helper_drop_table_if_exists
Definitions
sources/database_helper.php
- Drop the given table, or if it doesn't exist, silently return.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $this_ref | object | No | No | required parameter | N/A | N/A | Link to the real database object |
| $table | mixed | No | No | required parameter | N/A | N/A | The table name(s) |
Preview
Code (PHP)
/**
* Drop the given table, or if it doesn't exist, silently return.
*
* @param object $this_ref Link to the real database object
* @param mixed $table The table name(s)
*/
function _helper_drop_table_if_exists(object $this_ref, $table)
* Drop the given table, or if it doesn't exist, silently return.
*
* @param object $this_ref Link to the real database object
* @param mixed $table The table name(s)
*/
function _helper_drop_table_if_exists(object $this_ref, $table)

