using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CommonLibrary.DataBaseSupport
{
///
/// 使用SQL SERVER服务器的时的数据支持
///
public class SqlServerSupport
{
#region Constructor
///
/// 实例化一个默认的构造函数
///
public SqlServerSupport( )
{
}
#endregion
///
/// 数据库的连接字符串,该信息应来源于服务器保存的连接字符串
///
public static string ConnectionString { get; set; }
}
}