Creates a new instance of the SQLServerDataSet representing an existing table.

Namespace: ININ.IceLib.Configuration.Dialer.DataTypes
Assembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)

Syntax

C#
public SQLServerDataSet(
	string server,
	string database,
	string table,
	string user,
	string password
)
Visual Basic
Public Sub New ( _
	server As String, _
	database As String, _
	table As String, _
	user As String, _
	password As String _
)

Parameters

server
Type: System..::..String
The name of the server hosting the database.
database
Type: System..::..String
The name of the database hosting the table.
table
Type: System..::..String
The name of the table containing the data.
user
Type: System..::..String
The user name that has access to the table.
password
Type: System..::..String
The user's password.

See Also