<code type="php">
$table = $conn->getTable('User');

// getting column names

$names = $table->getColumnNames();

// getting column information

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