zoukankan      html  css  js  c++  java
  • VS2017 C# winform 项目使用 sqlite (二)

    (一)连接数据库&查询数据库,(例子:用户登录窗)

            private void BtnLogin_Click(object sender, EventArgs e)
            {
                //登录检测
                try
                {
                    string dbPath = "Data Source=" + Directory.GetCurrentDirectory() + @"dataorders.db;Version=3;Password=07762828216;";
                    using ( SQLiteConnection conn = new SQLiteConnection(dbPath)) {
                        //查询是否有相应的数据
                        string uname = TxbUsername.Text.Trim();
                        string upwd = TxbPassword.Text.Trim();
                        string sql_select = "select count(0) from users where username =@uname and password =@upwd ";
                        //连接数据库
                        if (conn.State == ConnectionState.Closed)
                        {
                            conn.Open();
                        }
                        SQLiteCommand cmd = new SQLiteCommand(sql_select, conn);
                        //cmd.Parameters.Add(new SQLiteParameter("@uname", uname));
                        //cmd.Parameters.Add(new SQLiteParameter("@upwd", upwd));
                        SQLiteParameter[] paras = new SQLiteParameter[] { new SQLiteParameter("@uname", uname), new SQLiteParameter("@upwd", upwd) };
                        cmd.Parameters.AddRange(paras);
                        SQLiteDataReader reader = cmd.ExecuteReader();
                        if (reader.Read())
                        {
                            int result = Convert.ToInt16(reader.GetValue(0));
                            if (result == 0)
                            {
                                MessageBox.Show("用户名或者密码错误,请重新输入!"); 
                            }
                            else if(result == 1)
                            {
                                MessageBox.Show("登录成功!");
                            }
                            else
                            {
                                MessageBox.Show("程序出错,请不要输入奇怪的的内容!");
                                //退出软件
                                System.Environment.Exit(0);
                            }
                        }
                        //关闭数据库连接
                        reader.Close();
                        conn.Close();
                    }
                }
                catch (Exception ex)
                {
                   MessageBox.Show("连接数据库失败:" + ex.Message);
                }
            }
  • 相关阅读:
    Linux 分卷压缩
    用 virtualenv 创建隔离的 Python 运行环境
    Ubuntu 16.04 安装 Python3.6
    Python 的全局变量
    Git 使用总结
    开源的许可证GPL、LGPL、BSD、Apache 2.0
    Python Unofficial Package Site
    apt-get update 更新 ubuntu时出现Hash sum mismatch的原因及解决方法
    Keep It Simple & Stupid
    Python IDLE 增加清屏功能
  • 原文地址:https://www.cnblogs.com/nb08611033/p/8806938.html
Copyright © 2011-2022 走看看