ea_get_schema
Discover the database schema of an Enterprise Architect model export: list tables with row counts or inspect a table's columns, indexes, and rowid alias for efficient queries.
Instructions
List the model's database tables in tables, or pass a tableName to get that table's columns and indexes instead. That form echoes the table name and adds rowidAlias — the INTEGER PRIMARY KEY aliasing SQLite's rowid, so the fastest lookup path, or null when the table has none — with rowidNote saying which case applies. Use this to discover what data the model holds beyond what the typed ea_* tools return. See ea_get_model_info for the export's identity.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tableName | No | Table name to inspect. Omit to list all tables with row counts. |