Obtains database [Table-Information] according to provider via [Database] currently connected. This method may needs some privilege according to the database product and its version. Return
SchemaTableInfo Description
CatalogDatabase or Catalog name which has the table
Schema Name of schema that contains the table.
Table Table name.
Examples Following section demonstrates retrieving the tables from database.
        using(var exc = cn.Executer()) 
			foreach (var tb in exc.GetTables())
				Console.WriteLine("\t" + tb.Schema + "." + tb.Name);
	
9fxr4S