查询女生信息,并将信息显示在窗体上:
原数据表//右键数据库名,新建查询
-------------
新建查询窗口,添加新建存储过程Procedure_GetGirls1和查询代码如下 :
CREATE PROCEDURE dbo.Procedure_GetGirls1 /*存储过程名称*/
AS
SELECT * from student_info WHERE sexy='女' /*查询语句*/
RETURN
执行完成后,刷新:
C#:创建一个windows窗体应用(.NET Framework)程序,为窗体添加一个DataGridView控件。给控件命名 dGVGirls:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace StudentGridView
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
protected override void OnLoad(EventArgs e)
{
string connectionString =
"Data Source=.\\SQLExpress;Database=aq;Trusted_Connection=True;";
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
using (SqlCommand cmd = new SqlCommand())
{
cmd.Connection = connection; // 设置连接对象
cmd.CommandType = CommandType.StoredProcedure; // 设置命令类型为存储过程
cmd.CommandText = "Procedure_GetGirls1"; // 设置存储过程名称
using (SqlDataAdapter adapter = new SqlDataAdapter(cmd))
{
DataSet dataSet = new DataSet();
adapter.Fill(dataSet); // //将查询结构填充数据集
if (dataSet.Tables.Count > 0)
{
dGVGirls.DataSource = dataSet.Tables[0];//将数据集绑定到控件上
}
}
}
}
}
}
}
运行C#代码:
另一种简单方法--------------------------protected override void OnLoad(EventArgs e)代码全部注释
在Form1.cs[设计]页面右上角的小三角处添加数据源导入aq数据库 :
选择数据库,下一步
选择数据集,下一步
选择新建连接//实际这里连接aq数据库,直接可以下一步
下面的服务器名中,guanzu是计算机名
完成后上图数据集aqDataSet1里已经包含了表staq和存储过程Procedure_GetGirls1
分别选择两种数据源的效果: