C#连接SQL Server 2005 Express的字符串
C#连接SQL Server 2005 Express的字符串
//下面就是标准的连接,注意SERVER是我的计算机名。SQLEXPRESS是数据库实例。SSPI表示使用Windows登陆的帐户。master是要连接的数据库。
//
string cstr = "server=SERVER//SQLEXPRESS;Initial Catalog=master;Integrated Security=SSPI";
//不使用远程连接的时候应该把连接字符串改为:
"Server=localhost//SQLExpress;Integrated Security=SSPI"
//也可以指定默认的数据库,例如,指定默认数据库是"master"就应该写为:
"Server=localhost//SQLExpress;Initial Catalog=master;Integrated Security=SSPI"
Data Source=./SQLEXPRESS;AttachDbFilename="H:/ASP.net demo/DotNetDemoS3/DotNetDemoS3/Codematic_Data.MDF";Integrated Security=True;Connect Timeout=30;User Instance=True
建议使用IDE自己生成的