Function __global->_helper_rename_table
Definitions
sources/database_helper.php
- Rename the given table.
- 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 |
| $old | ID_TEXT | No | No | required parameter | N/A | N/A | The old table name |
| $new | ID_TEXT | No | No | required parameter | N/A | N/A | The new table name |
Preview
Code (PHP)
/**
* Rename the given table.
*
* @param object $this_ref Link to the real database object
* @param ID_TEXT $old The old table name
* @param ID_TEXT $new The new table name
*/
function _helper_rename_table(object $this_ref, string $old, string $new)
* Rename the given table.
*
* @param object $this_ref Link to the real database object
* @param ID_TEXT $old The old table name
* @param ID_TEXT $new The new table name
*/
function _helper_rename_table(object $this_ref, string $old, string $new)

