本文介绍了SQL Server2005与C#.net的连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请通过给我简单的代码为我提供帮助
pls assist me by giving me simple code
推荐答案
using (SqlConnection connection = new SqlConnection(
@"Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;"))
{
connection.Open();
// Do work here; connection closed on following line.
}
Sample taken from MSDN[^] :)
这篇关于SQL Server2005与C#.net的连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!