我目前有 Visual Studio 2005 和 SQL Server 2005。我已经在 SQL Server 中安装了一个空数据库,但我不知道如何使用 VS 连接数据库。

我应该使用什么样的项目(我将在 Windows 应用程序中使用数据库)以及我将如何将它插入到项目中并使用它?

编辑:我在 Microsoft SQL Server Managament Studio 中有一个数据库,我想使用 c# 在 winForm 中使用它。我必须以某种方式连接这两个?

请您参考如下方法:

您可以创建任一项目类型:

  1. 网络应用程序
  2. Windows 应用程序
  3. 控制台应用程序
  4. 网络服务
  5. 类库

要连接数据库,请使用以下代码:

SqlDataReader rdr = null; 
SqlConnection conn = new SqlConnection("Data Source=(local);Initial Catalog=Northwind;Integrated Security=SSPI"); 
conn.Open(); 
SqlCommand cmd = new SqlCommand("select * from Customers", conn); 
rdr = cmd.ExecuteReader(); 
conn.Close(); 
conn.Dispose(); 

我建议你拿起一本关于 ADO.NET 的好书通读一遍。您也可以在 Google 上搜索一些文章。


评论关闭
IT序号网

微信公众号号:IT虾米 (左侧二维码扫一扫)欢迎添加!