幫同學搞個課程設計winform連接sqlserver2005 具體方法: .添加App.config文件 2.在App.config文件中添加節點 3.在項目Reference中添加引用 System.configuration 在文件中 添加引用 using System.configurati ...
幫同學搞個課程設計winform連接sqlserver2005
具體方法:
.添加App.config文件
2.在App.config文件中添加節點
<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="connString" value="Data Source=LIBL;Initial Catalog=HoverTreeSCJ;User ID=sa;Password=sa"></add> </appSettings> </configuration>
HoverTreeSCJ 為資料庫的名稱
3.在項目Reference中添加引用 System.configuration
在文件中 添加引用 using System.configuration;
using System.Data.SqlClient;
4.獲取App.config中的連接字元串
public string ConnString = System.Configuration.ConfigurationManager.AppSettings["connString"];
5.連接資料庫,讀取數據
SqlConnection conn = new SqlConnection(ConnString); string strSql = "SELECT * FROM Basetb"; SqlCommand cmd = new SqlCommand(); cmd.CommandText = strSql; cmd.Connection = conn; conn.Open(); SqlDataReader dr = cmd.ExecuteReader(); if (dr.HasRows) { while (dr.Read()) { this.textBox1.Text = dr[0].ToString(); } } conn.Close(); /* hovertree.top */
推薦:http://www.cnblogs.com/roucheng/p/DataGridView.html