|
From: Daniel M. <dan...@ve...> - 2004-11-22 01:47:10
|
Hello, How would I get meta data about tables and table columns using the FirebirdSql provider? In Oracle, you would use ALL_TABLES to get a list of all tables and ALL_TAB_COLUMNS to get table column information. In Microsoft SQL Server, you would use the system views/tables: syscolumns, systypes, and sysobjects. In MySQL, you would use SHOW TABLES and DESCRIBE table_name. What do you use for FirebirdSql? Where in the docs can I find this information? Thanks, Daniel |