SQLConnectionControl DatabaseName Property Control Documentation
Gets or sets the connection property: DatabaseName.

Namespace: ZsZ_Studio.Controls
Assembly: SQL.Connection.Control (in SQL.Connection.Control.dll) Version: 1.0.4947.20663 (1.0.0.0)
Syntax

public string DatabaseName { get; set; }

Property Value

Type: OnlineString
Remarks

Examples

(VB.NET) This sample shows how to set the connection propertys.
Dim scc As New ZsZ_Studio.Controls.SQLConnectionControl
scc.Location = New Point(10, 10)

scc.ServerName = "localhost\SQLEXPRESS"
scc.DatabaseName = "NewDatabase"
scc.SqlAuthentication = True
scc.UserName = "sa"
scc.Password = "pass"

Me.Controls.Add(scc)
See Also