ADO.NET学习笔记(六)

(4)查找用户名及密码:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Data.SqlClient;

namespace 我的第一个数据库

{
    class 查找数据

    {
        private string 查找SQL语句;

        public string 查找属性

        {
            set

            {

                this.查找SQL语句 = value;

            }

        get

        {

            return this.查找SQL语句;

        }
        }
        public void 查找方法()

        {

            using (SqlConnection conn = new SqlConnection(@"Data Source = .\SQLEXPRESS;AttachDBFilename = |DataDirectory|\Database1.mdf;Integrated Security = True;  User Instance =True"))//实现了IDisposable接口,用using括起,便于自动释放,在using()后调用了IDisposabl方法,它先判断有无conn.Close();如果没有,先进行关闭,在释放

            {
                conn.Open();

                using (SqlCommand cmd = conn.CreateCommand())//创建命令对象的实例并与先建的数据库建立连接,将连接using进来,使此方法直接不用释放,出了括号会自动释放

                {

                    //cmd.CommandText = "insert into MyTable1(Name)  values(‘杨六‘)";//commmandText方法是SqlCommand类的一个方法,输入要执行的SQL命令行参数

                    cmd.CommandText = this.查找属性;

                    using (SqlDataReader reader = cmd.ExecuteReader())

                    {

                        while (reader.Read()) //只能逐字向前处理,无法回头,无法往前跳着走

                        { 

                        //Console.WriteLine(reader.GetString(1));//1表示读第一列(UserName的一列)

                            string username = reader.GetString(reader.GetOrdinal("UserName"));//GetOrdinal方法返回UserName字段的列号,有时不固定,不一定在第一列

                            int id = reader.GetInt32(reader.GetOrdinal("ID"));

                            string password = reader.GetString(reader.GetOrdinal("Password"));

                            Console.WriteLine("ID= {0},UserName = {1},password = {2}",id,username,password);

                        }

                    }

                    //cmd.ExecuteNonQuery();//执行上面的非查询语句

                   Console.WriteLine("查找成功!");

                }

            }

      }

   }

}

ADO.NET学习笔记(六),古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。