Creates a new instance of the SQLServerDataSet representing a table that does not yet exist.
Namespace: ININ.IceLib.Configuration.Dialer.DataTypesAssembly: 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, IEnumerable<DBColumn> fields ) |
Visual Basic |
---|
Public Sub New ( _ server As String, _ database As String, _ table As String, _ user As String, _ password As String, _ fields As IEnumerable(Of DBColumn) _ ) |
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.
- fields
- Type: System.Collections.Generic..::..IEnumerable<(Of <(<'DBColumn>)>)>