SqlClient Constructor Nemiro.Data.dll
Initializes a new instance of the SqlClient class.

Namespace: Nemiro.Data.Sql
Assembly: Nemiro.Data (in Nemiro.Data.dll) Version: 2.11.4.126 (2.11.4.126)
Syntax

public SqlClient()
Examples

The following example creates an instance of the SqlClient class with default settings.

using (SqlClient client = new SqlClient())
{
  // ...
}
See Also