• sqlLite的数据库操作类


    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Data;
    using System.Data.SQLite;
    namespace FaceAttendance
    {
        class DBHelper
        {
            public SQLiteConnection conn;
            public DBHelper()
            {
                ConnectDatabase();
            }
            private void ConnectDatabase()
            {
                conn = new SQLiteConnection("Data Source=..\..\..\faceinfo.db3; verson = 3;"); //创建数据库实例,指定文件位置  
                conn.Open(); //打开数据库,若文件不存在会自动创建
                if (conn == null) throw new Exception("数据库连接失败。请检查数据库文件是否存在。");
            }
            public void insertperson(int Id,string name,string sex,string position,string faceinfo,string des)
            {
                string sql = null;
                if (des ==null)
                {
                    sql = "insert into info values(" + 14061143 + ",'" + name + "','" + sex + "','" + position + "'," + des + ");";
                }
                else
                {
                    sql = "insert into info values(" + 14061143 + ",'" + name + "','" + sex + "','" + position + "','" + des + "');";
                }
                SQLiteCommand command = new SQLiteCommand(sql, conn);
                command.ExecuteNonQuery();
                command.Dispose();
            }
            public void insertAttendance(int Id,string time)
            {
                string sql = "insert into signinfo values("+Id+",'"+time+"');";
                SQLiteCommand command = new SQLiteCommand(sql, conn);
                command.ExecuteNonQuery();
                command.Dispose();
            }
            public List<peopleinfo> getpeopleinfo()
            {
                List<peopleinfo> faceRlt = new List<peopleinfo>();
                string sql = "SELECT * FROM info;";
                SQLiteCommand command = new SQLiteCommand(sql, conn);
                SQLiteDataReader reader = command.ExecuteReader();
                int j = 0;
                while (reader.Read())
                {
                    j++;
                    peopleinfo people = new peopleinfo();
                    people.Id = reader.GetInt32(0);
                    people.name = (string)reader["NAME"];
                    people.sex = (string)reader["SEX"];
                    people.position = (string)reader["JOB"];
                    string fs = (string)reader["faceinfo"];
                    string[] fsa = fs.Split(';');
                    for (int i = 0; i < 128; i++)
                        people.faceinfo[i] = (float)Convert.ToDouble(fsa[i]);
                    people.des = (string)reader["MSG"];
                    faceRlt.Add(people);
                }
                command.Dispose();
                reader.Dispose();
                return faceRlt;
            }
            public void insertPersonRecord(string name,string time)
            {
                string sql = "insert into personRecord values(' " + name + "','" + time + "');";
                SQLiteCommand command = new SQLiteCommand(sql, conn);
                command.ExecuteNonQuery();
                command.Dispose();
            }
            public peopleinfo getPersonInfo(int Id)
            {
                string sql = "SELECT * FROM info WHERE Id = "+Id;
                SQLiteCommand command = new SQLiteCommand(sql, conn);
                SQLiteDataReader reader = command.ExecuteReader();
                reader.Read();
                peopleinfo people = new peopleinfo();
                people.Id = reader.GetInt32(0);
                people.name = (string)reader["NAME"];
                people.sex = (string)reader["SEX"];
                people.position = (string)reader["JOB"];
                people.des = (string)reader["MSG"];
                return people;
            }
        }
    }
  • 相关阅读:
    python开发mysql:索引
    学习笔记之English
    本周学习小结(25/03
    本周学习小结(18/03
    本周学习小结(11/03
    学习笔记之Machine Learning Crash Course | Google Developers
    本周学习小结
    学习笔记之Fluent Python
    Leetcode 4. Median of Two Sorted Arrays
    学习笔记之Python爬虫
  • 原文地址:https://www.cnblogs.com/codeDog123/p/6539618.html
Copyright © 2020-2023  润新知