Gets a description of the tables available for the catalog

Namespace: NHibernate.Dialect.Schema
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
DataTable GetTables(
	string catalog,
	string schemaPattern,
	string tableNamePattern,
	string[] types
)
Visual Basic
Function GetTables ( _
	catalog As String, _
	schemaPattern As String, _
	tableNamePattern As String, _
	types As String() _
) As DataTable
Visual C++
DataTable^ GetTables(
	String^ catalog, 
	String^ schemaPattern, 
	String^ tableNamePattern, 
	array<String^>^ types
)

Parameters

catalog
Type: System..::..String
A catalog, retrieves those without a catalog
schemaPattern
Type: System..::..String
Schema pattern, retrieves those without the schema
tableNamePattern
Type: System..::..String
A table name pattern
types
Type: array<System..::..String>[]()[][]
a list of table types to include

Return Value

Each row

See Also