IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> c#做一个身份信息查询系统 -> 正文阅读

[大数据]c#做一个身份信息查询系统

最近有个小伙伴私信我,说刚开始接触c#,想做一个身份信息录入并且可以查询的软件,问我该怎么做?于是,我写了个demo,我们先来看一下效果

  1. 主界面效果图在这里插入图片描述
  2. 信息录入界面效果图

在这里插入图片描述

  1. 项目详解,为了方便数据储存,我使用了access数据库作为本次demo的数据库,c#操作access的数据库的核心代码如下【可以直接复制使用】:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.OleDb;

namespace infoManagement
{
    public class DataHelpher
    {
        static string filepath = System.Environment.CurrentDirectory + "\\info.accdb";
        public static string GetDbPath(string path)
        {
            string str = "Provider = Microsoft.Ace.OLEDB.12.0;Persist Security Info=False;Data Source=" + path;
            return str;
        }
        public static DataTable GetData(string sql)
        {
            DataTable dt = null;
            OleDbConnection conn = new OleDbConnection(GetDbPath(filepath));
            try
            {
                if (conn.State == ConnectionState.Closed)
                {
                    conn.Open();
                }
                OleDbDataAdapter adapter = new OleDbDataAdapter(sql, conn);
                DataSet set = new DataSet();
                adapter.Fill(set);
                dt = set.Tables[0];
            }
            catch (Exception ex)
            {
                return null;
            }
            finally
            {
                conn.Close();
            }
            return dt;
        }
        public static Boolean UpdateAndInsertAndDelete(string sql)
        {
            bool re = false;
            OleDbConnection conn = new OleDbConnection(GetDbPath(filepath));

            try
            {
                if (conn.State == ConnectionState.Closed)
                {
                    conn.Open();
                }

                OleDbCommand cmd = conn.CreateCommand();
                cmd.CommandText = sql;
                cmd.ExecuteNonQuery();
                re = true;
            }
            catch (Exception ex)
            {

                Console.WriteLine(ex.Message.ToString() + sql);
            }
            finally
            {

                conn.Close();
            }

            return re;
        }
    }
}

主界面的代码如下:

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

namespace infoManagement
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            StartPosition = FormStartPosition.CenterScreen;
            this.dataGridView1.DataSource = GetList();
        }

        public List<InfoModel> GetList()
        {
            List<InfoModel> list = new List<InfoModel>();
            DataTable dt = DataHelpher.GetData("select * from c_user");
            if (dt != null && dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    InfoModel ml = new InfoModel();
                    ml.bir = dt.Rows[i]["bir"].ToString();
                    ml.name = dt.Rows[i]["name"].ToString();
                    ml.room = dt.Rows[i]["room"].ToString();
                    ml.xb = dt.Rows[i]["xb"].ToString();
                    ml.updatetime = dt.Rows[i]["updatetime"].ToString();
                    ml.del = "删除";
                    ml.edit = "编辑";
                    list.Add(ml);
                }
            }
            else
            {
                list = null;
            }
            return list;

        }

        private void button1_Click(object sender, EventArgs e)
        {
            InfoAddForm add = new InfoAddForm();
            if (add.ShowDialog() == DialogResult.OK)
            {
                this.dataGridView1.DataSource = GetList();
            }
        }

        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            string value = this.dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
            if (value == "删除")
            {
                Delete(this.dataGridView1.SelectedRows[0].Cells[0].Value.ToString());
                this.dataGridView1.DataSource = GetList();
            }
            else if (value == "编辑")
            {
                InfoEditForm form = new InfoEditForm(this.dataGridView1.SelectedRows[0].Cells[0].Value.ToString());
                if (form.ShowDialog() == DialogResult.OK)
                {
                    this.dataGridView1.DataSource = GetList();
                }
            }
        }

        public void Delete(string name)
        {
            string sql = string.Format("delete from c_user where name='{0}'", name);
            DataHelpher.UpdateAndInsertAndDelete(sql);
        }

        private void button2_Click(object sender, EventArgs e)
        {
            string text = this.textBox1.Text;
            if (string.IsNullOrEmpty(text)&&(!radioButton_all.Checked))
            {
                MessageBox.Show("请输入参数");
            }
            else
            {
                string sql = string.Format("select * from c_user where name='{0}'", text);
                if (radioButton_bir.Checked)
                {
                    sql = string.Format("select * from c_user where bir='{0}'", text);
                }
                else if (radioButton_room.Checked)
                {
                    sql = string.Format("select * from c_user where room='{0}'", text);
                }
                else if (radioButton_xb.Checked)
                {
                    sql = string.Format("select * from c_user where xb='{0}'", text);
                }
                else if (radioButton_all.Checked) {
                    sql = string.Format("select * from c_user");
                }

                DataTable dt = DataHelpher.GetData(sql);
                List<InfoModel> list = new List<InfoModel>();
                if (dt != null && dt.Rows.Count > 0)
                {
                    for (int i = 0; i < dt.Rows.Count; i++)
                    {
                        InfoModel ml = new InfoModel();
                        ml.bir = dt.Rows[i]["bir"].ToString();
                        ml.name = dt.Rows[i]["name"].ToString();
                        ml.room = dt.Rows[i]["room"].ToString();
                        ml.xb = dt.Rows[i]["xb"].ToString();
                        ml.updatetime = dt.Rows[i]["updatetime"].ToString();
                        ml.del = "删除";
                        ml.edit = "编辑";
                        list.Add(ml);
                    }
                }
                this.dataGridView1.DataSource = list;
            }
        }
    }
}

信息录入代码如下:

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;

namespace infoManagement
{

    public partial class InfoAddForm : Form
    {
        public InfoAddForm()
        {
            InitializeComponent();
            StartPosition = FormStartPosition.CenterScreen;
        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void Button1_Click(object sender, EventArgs e)
        {
            InfoModel mod = new InfoModel();
            mod.bir = this.textBox_bir.Text;
            mod.name = this.textBox_xm.Text.ToString();
            mod.room = this.textBox_room.Text.ToString();
            mod.updatetime = DateTime.Now.ToString();
            mod.xb = this.textBox_xb.Text.ToString();
            if (string.IsNullOrEmpty(mod.bir) || string.IsNullOrEmpty(mod.name) || string.IsNullOrEmpty(mod.room) || string.IsNullOrEmpty(mod.xb))
            {
                MessageBox.Show("参数不全");
            }
            else
            {
                if (Add(mod))
                {
                    MessageBox.Show("成功");
                    DialogResult = System.Windows.Forms.DialogResult.OK;
                }
                else
                {
                    MessageBox.Show("失败");
                }
            }
        }
        public Boolean Add(InfoModel info)
        {
            bool re = false;
            try
            {
                DataTable dt = DataHelpher.GetData(string.Format("select * from c_user where name='{0}'", info.name));
                if (dt != null && dt.Rows.Count > 0)
                {
                    MessageBox.Show("该信息已经存在");
                    re = false;
                }
                else
                {
                    string sql = string.Format("insert into c_user(name,xb,bir,room,updatetime) values ('{0}','{1}','{2}','{3}','{4}')", info.name, info.xb, info.bir, info.room, info.updatetime);
                    if (DataHelpher.UpdateAndInsertAndDelete(sql))
                    {
                        re = true;


                    }
                    else
                    {
                        re = false;

                    }
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message.ToString());
            }
            return re;
        }
    }
}

这样我们的一个简单的信息查询的demo就完成了,为了方便大家的学习,我把demo分享在下面,欢迎各位感兴趣的朋友随时分享下载哈!如有任何问题可及时的联系哈!

链接:https://pan.baidu.com/s/1ERpJ9zIkcndz7Gtml_IIsg 
提取码:6dsb 
--来自百度网盘超级会员V3的分享
  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2021-11-10 12:28:04  更:2021-11-10 12:29:16 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 5:24:23-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码