网络编程
位置:首页>> 网络编程>> 数据库>> C#如何在窗体程序中操作数据库数据

C#如何在窗体程序中操作数据库数据

作者:596785154  发布时间:2024-01-22 13:31:41 

标签:C#,窗体程序,数据库,数据

一、界面布局

C#如何在窗体程序中操作数据库数据

界面中有一个dataGridview、两个Button、两个Label和两个TextBox。

二、定义数据库操作的公共类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Windows.Forms;
using System.Data;
using MySql.Data.MySqlClient;
namespace TemSys
{
  public  class DBCtrl
  {
       private MySqlConnection m_ClientsqlConn;
       public DBCtrl()                                                                          //    连接类型
       {
           m_ClientsqlConn = new MySqlConnection();
           try
           {
               m_ClientsqlConn.Dispose();
               m_ClientsqlConn.Close();              
               m_ClientsqlConn.ConnectionString = "Database=dbName;Data Source=localhost;User Id=root;Password=123;charset=utf8";
               m_ClientsqlConn.Open();
           }
           catch (Exception ee)
           {
               MessageBox.Show(ee.Message);
           }
       }
       public DBCtrl(string IP, string DBname, string Uname, string Pword)                     //    创建连接
       {
           m_ClientsqlConn = new MySqlConnection();
           try
           {
               m_ClientsqlConn.Dispose();
               m_ClientsqlConn.Close();
               m_ClientsqlConn.ConnectionString = string.Format("Database={0};Data Source={1};User Id={2};Password={3};charset=utf8", DBname, IP, Uname, Pword);
               m_ClientsqlConn.Open();
           }
           catch (Exception ee)
           {
               MessageBox.Show(ee.Message);
           }
       }
       public void DBConn(string connStr)                                                         //    重载  创建连接
       {
           try
           {
               m_ClientsqlConn.Close();
               m_ClientsqlConn.ConnectionString = connStr;
               m_ClientsqlConn.Open();
           }
           catch (Exception ee)
           {
               MessageBox.Show(ee.Message);
           }
       }
       public DataTable GetDataTable(string SQLstr)                                     //    获取DataTable 一个表
       {
           Console.Write("zcn==获取数据库连接,打开数据库");
           try
           {
               if (m_ClientsqlConn.State == ConnectionState.Open)
                   m_ClientsqlConn.Close();
               m_ClientsqlConn.Open();
               MySqlDataAdapter da = new MySqlDataAdapter(SQLstr, m_ClientsqlConn);
               DataTable resultDS = new DataTable();
               da.Fill(resultDS);
               return resultDS;
           }
           catch (Exception ee)
           {
               Console.Write("zcn==获取数据库连接,打开数据库异常异常");
               //MessageBox.Show( ee.Message);
               m_logclass.WriteLogFilein(ee.Message, "GetDataTable.txt");
               return null;
           }
           finally
           {
               m_ClientsqlConn.Close();
           }
       }
       public DataTable GetDataTableUsing(string SQLstr)                                     //    获取DataTable 一个表
       {
           using (MySqlConnection m_ClientsqlConn = new MySqlConnection())
           {
           }
           try
           {
               if (m_ClientsqlConn.State == ConnectionState.Open)
                   m_ClientsqlConn.Close();
               m_ClientsqlConn.Open();
               MySqlDataAdapter da = new MySqlDataAdapter(SQLstr, m_ClientsqlConn);
               DataTable resultDS = new DataTable();
               da.Fill(resultDS);
               return resultDS;
           }
           catch (Exception ee)
           {
               //MessageBox.Show( ee.Message);
               return null;
           }
       }
       public List<string> GetStringListfor(string lineName,DataTable dt)    //根据某一列的名字  获取某个集合中该列的所有值
       {
           List<string> list = new List<string>();
           foreach (DataRow dr in dt.Rows)
           {
               list.Add((string)dr[lineName]);
           }
           return list;
       }
       public List<DataRow> GetDataRowfor(DataTable dt)   //根据 datatable  获取每一行的数据的datarow
       {
           List<DataRow> list = new List<DataRow>();
           foreach (DataRow dr in dt.Rows)
           {
               list.Add(dr);  
           }        
           return list;
       }
/*
       public DataRow GetDataRowfor(string tablename,string ID)  //根据ID号 返回对应行的  DataRow
       {
           string ss = "select * from " + tablename + " where ID = \'"+ID +"\'";
           DataRow dr = new DataRow();
           DataTable dt = GetDataTable(ss);
           dr = dt.Rows[0];
           return dr;
       }
*/
        public DataTable GetDataTableOneLine(string SQLstr)                                     //    获取DataTable 一个表中一行
       {
           MySqlDataAdapter da = new MySqlDataAdapter(SQLstr, m_ClientsqlConn);
           DataTable resultDS = new DataTable();
           da.Fill(resultDS);
           return resultDS;
       }
       public DataTable GetDataSet_to_Table(string SQLstr)                               //    获取 dataset   多个表中  table
       {
           try
           {
               MySqlDataAdapter da = new MySqlDataAdapter(SQLstr, m_ClientsqlConn);
               DataSet ds = new DataSet();
               da.Fill(ds);
               return ds.Tables[0];
           }
           catch
           {
               return null;
           }
       }
       public Boolean InsertDBase(string insString)
       {
           try
           {
               if (m_ClientsqlConn.State == ConnectionState.Open)
                   m_ClientsqlConn.Close();
               m_ClientsqlConn.Open();
               MySqlCommand sqlcomd = new MySqlCommand(insString, m_ClientsqlConn);
               sqlcomd.ExecuteNonQuery();
               return true;
           }
           catch (Exception ee)
           {
               return false;
           }
           finally
           {
               m_ClientsqlConn.Close();
           }
       }
       public Boolean deleteRowfor(string tablename,int deleteID)  //根据 ID 删除指定行
       {
           try
           {
               string ss ="delete from "+ tablename +" where ID = "+ deleteID;
               if (m_ClientsqlConn.State == ConnectionState.Open)
                   m_ClientsqlConn.Close();
               m_ClientsqlConn.Open();
               MySqlCommand sqlcmd = new MySqlCommand(ss, m_ClientsqlConn);
               sqlcmd.ExecuteNonQuery();
               return true;
           }
           catch(Exception ee)
           {
               return false;
           }
       }
       public Boolean ModifyRowfor(string modifystr,string modifyID)         // 根据
       {
           try
           {
               string ss = modifystr + " where id = " + modifyID;
               if (m_ClientsqlConn.State == ConnectionState.Open)
                   m_ClientsqlConn.Close();
               m_ClientsqlConn.Open();
               MySqlCommand sqlcmd = new MySqlCommand(ss, m_ClientsqlConn);
               sqlcmd.ExecuteNonQuery();
               return true;
           }
           catch (Exception ee)
           {
               return false;
           }
           finally
           {
               m_ClientsqlConn.Close();
           }
       }
       public void CloseDBase()               //   参数类型  不同数据库连接
       {
           m_ClientsqlConn.Close();
       }
   }
}

三、在界面中操作数据库方法

ps:数据库的配置信息保存在Config.ini文件中,如果仅是测试用的话,可以直接在

m_DataBase = new DBCtrl(ipstr, namestr, usernamestr, passwordstr);

处输入ip地址、数据库名、数据库用户名和密码即可

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.Runtime.InteropServices;
namespace TemSys
{
   public partial class ModifyDevice : Form
   {
       [DllImport("kernel32")]                                        //读写ini文件函数
       private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
       [DllImport("kernel32")]
       private static extern long GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
       DataTable dt = new DataTable();
       private DBCtrl m_DataBase;
       public ModifyDevice()
       {
           InitializeComponent();
       }
       //将所有的textBox值设为空
       private void TextBoxNull()
       {
           textBox1.Text = "";
           textBox2.Text = "";
       }
       //设置Lab值
       private void labelshow()
       {
           label1.Text = dataGridView1.Columns[0].HeaderText;
           label2.Text = dataGridView1.Columns[12].HeaderText;
       }          
       //初始化界面
       private void ModifyDevice_Load(object sender, EventArgs e)
       {
           StringBuilder retval = new StringBuilder();
           GetPrivateProfileString("DBConfig", "dbip", "", retval, 20, AppDomain.CurrentDomain.BaseDirectory + "Config.ini");
           string ipstr = retval.ToString();
           GetPrivateProfileString("DBConfig", "dbname", "", retval, 20, AppDomain.CurrentDomain.BaseDirectory + "Config.ini");
           string namestr = retval.ToString();
           GetPrivateProfileString("DBConfig", "dbusername", "", retval, 20, AppDomain.CurrentDomain.BaseDirectory + "Config.ini");
           string usernamestr = retval.ToString();
           GetPrivateProfileString("DBConfig", "dbpassword", "", retval, 20, AppDomain.CurrentDomain.BaseDirectory + "Config.ini");
           string passwordstr = retval.ToString();
           m_DataBase = new DBCtrl(ipstr, namestr, usernamestr, passwordstr);
           initDataTable();
       }
       private void initDataTable()
       {
           string ssp = string.Format("select * from device_info1");
           dt = m_DataBase.GetDataTable(ssp);
           dataGridView1.DataSource = dt;
           labelshow();
       }
       //双击dataGridView响应事件
       private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
       {
           string index = dataGridView1.CurrentRow.Cells[0].Value.ToString();
           if (label1.Text == "id")
           {
               string ssp = string.Format("select * from device_info1 where id='" + index + "'");
               dt = m_DataBase.GetDataTable(ssp);
               //DataRow row = dt.Rows[0];
               textBox1.Text = dt.Rows[0]["id"].ToString();
               textBox2.Text = dt.Rows[0]["number"].ToString();
           }
       }
       //点击修改按钮响应事件
       private void btnModify_Click(object sender, EventArgs e)
       {
           bool flag = false;
           string ssp = string.Format("update device_info1 set number='" + textBox2.Text + "'");
           flag = m_DataBase.ModifyRowfor(ssp, textBox1.Text);
           if (flag)
           {
               MessageBox.Show("修改成功!");
               initDataTable();
           }
           else
           {
               MessageBox.Show("修改失败!");
           }
       }
       private void btnDelete_Click(object sender, EventArgs e)
       {
            bool flag = false;
           int currentIndex = (int)dataGridView1.CurrentRow.Cells[0].Value;
           Console.WriteLine("输出当前选中数据行:" + currentIndex);
           flag = m_DataBase.deleteRowfor("device_info1", currentIndex);
           if (flag)
           {
               MessageBox.Show("删除成功!");
               initDataTable();
           }
           else
           {
               MessageBox.Show("删除失败!");
           }
       }
   }
}

来源:https://blog.csdn.net/zcn596785154/article/details/81283722

0
投稿

猜你喜欢

  • 可视性的问题几乎在每次不同产品的用户测试中都会出现:用户总是对页面的某些元素、功能视若无睹,或根本无视。基于此,对这个问题进行了一番小小的研
  • pandas中有时需要按行依次对.csv文件读取内容,那么如何进行呢?我们来完整操作一遍,假设我们已经有了一个.csv文件。# 1.导入包i
  • 安装pip install lazyprop例子1from lazyprop import lazypropclass Foo(object
  • 描述Python time time()返回当前时间的时间戳(1970 * 后经过的浮点秒数)。突然想看时间了,打开cmd发现脑中空荡,Jav
  • 第一种方法:A=[0]*8第二种方法:import numpy as np A=np.zeros(8)来源:https://blog.csd
  • 在数据库操作中,有些时候我们遇到需要实现“行转列”的需求,例如一下的表为某店铺的一周收入情况表:WEEK_INCOME(WEEK VARCH
  • 需求表格实现行拖拽,要求只支持同级拖拽!实现使用插件:SortableJS,可以参考官网配置项!// 安装npm install sorta
  • Progressbar 基本概念Progressbar 可以解释为进度条,主要是当做一个工作进度的指针,在这个控件中会有一个指针,由此指针可
  • 本文实例讲述了python获取本地计算机名字的方法。分享给大家供大家参考。具体如下:import sys, sockethostname =
  • 本文实例讲述了Python简明入门教程。分享给大家供大家参考。具体如下:一、基本概念1、数在Python中有4种类型的数——整数、长整数、浮
  • 目录1、切片的基础用法2、切片的高级用法3、自定义对象实现切片功能3.1、魔术方法:`getitem()`3.2、自定义序列实现切片功能3.
  • 平时制作页面中可对属性list-style在list-item对象中常用,但用的都不深。一般都设为none重置整个页面就差不多OK,可能很多
  • 一、前言说明今天看到微信群里一道六年级数学题,如下图,求阴影部分面积看起来似乎并不是很难,可是博主添加各种辅助线,写各种方法都没出来,不得已
  • 键盘事件废话不多说直接上包from selenium.webdriver.common.keys import Keys1、删除键 BACK
  • 作用域为已声明标识符所表示的常量、类型、变量、函数或包在源代码中的作用范围。Go 语言中变量可以在三个地方声明:函数内定义的变量称为局部变量
  • 实例如下所示:import timeimport pickleimport osimport reclass LogIncScaner(ob
  • 如果我们需要修改sql server表结构,应该怎么做呢?下面就将教您如何修改sql server表结构的方法,希望对您学习sql serv
  • 1. 过程概述Python先把代码(.py文件)编译成字节码,交给字节码虚拟机,然后虚拟机一条一条执行字节码指令,从而完成程序的执行。2.
  • 一.Orcal临时表分类1.会话级临时表1).保存一个会话Session的数据。2).当会话退出时,临时表数据自动清空。表结构与元数据还存储
  • 一、什么是函数装饰器1.函数装饰器是Python提供的一种增强函数功能的标记函数;2.装饰器是可调用的函数对象,其参数是另一个函数(被装饰的
手机版 网络编程 asp之家 www.aspxhome.com