Namespace
- Last Updated: April 16, 2026
- 1 minute read
- ADO.NET
- Documentation
The namespace for the SQL Server data provider is DDTek.SQLServer. When connecting to the SQL Server database, you can use the SQLServerConnection and SQLServerCommand objects in the DDTek.SQLServer namespace.
The following code fragments show how to include the SQL Server data provider’s namespace in your applications.
C#
// Access SQL Server
using System.Data;
using DDTek.SQLServer;