要在Winform窗体中连接数据库,您需要执行以下步骤:
using System.Data.SqlClient;
SqlConnection connection = new SqlConnection("连接字符串");
connection.Open();
// 创建数据库命令对象
SqlCommand command = new SqlCommand();
command.Connection = connection;
// 设置要执行的SQL语句
command.CommandText = "SELECT * FROM 表名";
// 执行查询,并获取结果集
SqlDataReader reader = command.ExecuteReader();
// 遍历结果集
while (reader.Read())
{
// 读取每一行数据
string column1 = reader.GetString(0);
int column2 = reader.GetInt32(1);
// 其他列以此类推
}
reader.Close();
connection.Close();
请注意,上述示例中的连接字符串需要替换为您自己的实际连接字符串,以便连接到您的数据库。另外,还可以根据实际需求设置和执行其他数据库操作,例如插入、更新和删除数据等。