使用DataReader对象检索数据实例

我们再来重新完成学生信息窗体功能,不同的是前面采用的是DateSet和DataAdapter来完成的。现在我们使用DataReader对象来检索数据。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace DateReader_Test
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnSearch_Click(object sender, EventArgs e)
        {
            string connstr = @"Data Source=.\sqlexpress;initial catalog=school;integrated security=true;pooling=false";
            SqlConnection con=new SqlConnection(connstr);
            string sql="select * from student where id="+Convert.ToInt32(this.txtId.Text);
            try
            {
                con.Open();
                SqlCommand comm=new SqlCommand(sql,con);
                SqlDataReader reader=comm.ExecuteReader();
                reader.Read();
               
                if(reader.HasRows)
                {
                    this.txtName.Text = reader.GetValue(1).ToString();
                    this.txtSex.Text=(string)reader["ssex"];
                    this.txtAge.Text=reader["sage"].ToString();
                    this.txtClass.Text = (string)reader["sclass"];
                }
                else
                {
                    MessageBox.Show("没有相关记录");
               
                }
                reader.Close();
           
            }
            catch(Exception ex)
            {
                MessageBox.Show(ex.Message);

            }
            finally
            {
                con.Close();
            }
        }
    }
}

注意:在读取数据前必须执行Reader()方法,否则在运行时会出现异常。读取数据后要关闭DataReader对象,如果没有及时关闭,数据库在执行其他操作时会出现错误。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值