NAME

DBIO::Firebird::Introspect::Columns - Introspect Firebird columns via rdb$fields / rdb$relation_fields

VERSION

version 0.900000

DESCRIPTION

Fetches column metadata via rdb$relation_fields joined against rdb$fields. Primary-key information is derived from rdb$index_segments joined against rdb$relation_constraints.

METHODS

fetch

my $columns = DBIO::Firebird::Introspect::Columns->fetch($dbh, $tables);

Given the tables hashref from DBIO::Firebird::Introspect::Tables, returns a hashref keyed by table name. Each value is an arrayref of column hashrefs in ordinal position order with keys: column_name, data_type, not_null, default_value, is_pk, pk_position, size.

AUTHOR

DBIO & DBIx::Class Authors

COPYRIGHT AND LICENSE

Copyright (C) 2026 DBIO Authors Portions Copyright (C) 2005-2025 DBIx::Class Authors Based on DBIx::Class, heavily modified.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.