Working with objects - Component overview - Table - Getting table information.php 187 Bytes
Newer Older
1

hansbrix's avatar
hansbrix committed
2 3 4 5 6 7 8 9 10 11 12
<code type="php">
$table = $conn->getTable('User');

// getting column names

$names = $table->getColumnNames();

// getting column information

$columns = $table->getColumns();
</code>