Obtains database [Table-Information] according to provider via [Database] currently connected.
| SchemaTableInfo | Description |
|---|---|
| Catalog | Database or Catalog name which has the table |
| Schema | Name of schema that contains the table. |
| Table | Table name. |
using(var exc = cn.Executer())
foreach (var tb in exc.GetTables())
Console.WriteLine("\t" + tb.Schema + "." + tb.Name);