引入命名空间
using System;
using SystemData;使用别名
using sql = SystemDataSqlClient;
namespace test
{
public class test
{
public test()
{
sqlSqlConnection = new SqlSqlConnection();
//
}
}
}利用 NET 的 GC 机制应用于实现了 IDisposable 接口的对象
using(SqlConnection cn = new SqlConnection())
{
cnOpen();
using (SqlCommand cmd = new SqlCommand( cn))
{
//
}
}