Returns the columns of the requested table

Namespace: White_Tiger
Assembly: White Tiger (in White Tiger.dll) Version: 0.1.3.5 (0.1.3.5)

Syntax

C#
public string[] GetColumns(
	string username,
	string pass,
	string dbname,
	string tablename
)
Visual Basic
Public Function GetColumns ( 
	username As String,
	pass As String,
	dbname As String,
	tablename As String
) As String()
Visual C++
public:
virtual array<String^>^ GetColumns(
	String^ username, 
	String^ pass, 
	String^ dbname, 
	String^ tablename
) sealed

Parameters

username
Type: System..::..String
user's name
pass
Type: System..::..String
user's password
dbname
Type: System..::..String
name of database
tablename
Type: System..::..String
name of table

Return Value

Type: array<String>[]()[][]
the columns of the requested table

Implements

IWhiteTigerService..::..GetColumns(String, String, String, String)

See Also