博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Form1.cs
阅读量:4975 次
发布时间:2019-06-12

本文共 1347 字,大约阅读时间需要 4 分钟。

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 _001

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

        private void button1_Click(object sender, EventArgs e)

        {
            string sql = "select count(*) from tbusers where loginid=@loginid and loginpwd=@loginpwd";
            SqlParameter[] pms = new SqlParameter[]{
            new SqlParameter("@loginid",SqlDbType.VarChar,50){Value=textBox1.Text.Trim()},
            new SqlParameter("@loginpwd",SqlDbType.VarChar,50){Value=textBox2.Text.Trim()}
            };
            int i=(int)SqlHelper.ExecuteScalar(sql,pms);
            if(i>0)
            {
            this.Text="成功";
            }
            else
            {
            this.Text="失败";
            }
        }

        private void button2_Click(object sender, EventArgs e)

        {
            //声明集合
            List<tbusers> list= new List<tbusers>();
            string sql="select loginid,loginpwd from tbusers";
            using (SqlDataReader reader = SqlHelper.ExecuteReader(sql))
            {
                if (reader.HasRows)
                {
                    while (reader.Read())
                    {
                        //添加到数据模型
                        tbusers model = new tbusers();
                        model.loginid = reader.GetString(0);
                        model.loginpwd = reader.GetString(1);

                        //把数据添加到集合里

                        list.Add(model);
                    }
                }
            }
            //将集合的数据绑定到dataGridView控件
            dataGridView1.DataSource = list;
        }

        private void Form1_Load(object sender, EventArgs e)

        {

        }

    }
}

转载于:https://www.cnblogs.com/HarryChis/p/10368758.html

你可能感兴趣的文章
LeetCode N-Queens
查看>>
jstat 命令
查看>>
leetcode[155]Min Stack
查看>>
《代码不朽:编写可维护软件的10大要则(C#版)》读后感
查看>>
04、我的.net Core的学习 - 网页版Hello World
查看>>
分块学习
查看>>
UIWebView 屏蔽或者修改 alert警告框
查看>>
Qt-第一个QML程序-3-自定义一个按钮
查看>>
分布式系统事务一致性解决方案
查看>>
树梅派中文输入法支持
查看>>
[Git] 005 初识 Git 与 GitHub 之分支
查看>>
使用Analyze 和Instruments-Leaks分析解决iOS内存泄露
查看>>
Vue.js的入门
查看>>
【自定义异常】
查看>>
pip install 后 importError no module named "*"
查看>>
一些疑惑
查看>>
Codeforces Round #413 A. Carrot Cakes
查看>>
Linux(Ubuntu16.04)下添加新用户
查看>>
Windows c++应用程序通用日志组件(组件及测试程序下载)
查看>>
openstack dpdk
查看>>