Gets all of the tables available in the database.

Namespace: SchemaExplorer
Assembly: SchemaExplorer (in SchemaExplorer.dll) Version: 6.0.0.0 (7.0.0.15127)

Syntax

C#
TableSchema[] GetTables(
	string connectionString,
	DatabaseSchema database
)
Visual Basic
Function GetTables ( 
	connectionString As String,
	database As DatabaseSchema
) As TableSchema()

Parameters

connectionString
Type: System..::..String
The connection string used to connect to the target database.
database
Type: SchemaExplorer..::..DatabaseSchema
The database schema.

Return Value

Type: array<TableSchema>[]()[][]
An array of tables for a specific database.

See Also