wxy新人小白 2019-11-07 10:42 采纳率: 27.8%
浏览 766
已采纳

在C#winform中怎么让添加一些参数后,这行数据的ID自动加一

图片说明

 private void btnAdd_Click(object sender, EventArgs e)
        {
            string dbPath = @"D:\历年高考分数.db";
            if (btnName == "添加")
            {
                if (File.Exists(dbPath))
                {

                    string sq = @"Data Source=" + dbPath;
                    m = new SQLiteConnection(sq);
                    m.Open();
                    string sql = "select * from sqlite_master where type='table' and name ='特性'";
                    SQLiteCommand command = new SQLiteCommand(sql, m);//
                    //m.Close();
                    //AddcailiaoPara1(dbPath, "特性");
                    if (command.ExecuteScalar() == null)
                    {
                        m.Close();
                        NewTable1(dbPath, "特性");
                        AddcailiaoPara1(dbPath, "特性");
                    }
                    else
                    {
                        m.Close();
                        AddcailiaoPara1(dbPath, "特性");
                    }

                }
                else
                {
                    NewDbFile(dbPath);
                    NewTable1(dbPath, "特性");
                    AddcailiaoPara1(dbPath, "特性");
                }
                Guanlicailiaoquxian.form1.LoadcailiaoPara();
                DialogResult result = MessageBox.Show("添加成功!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }

        }
        public void AddcailiaoPara1(string dbPath, string tableName)
        {
            string yinsu = "";
            if (radioButton2.Checked == true) { yinsu = "紫外线"; }
            else if (radioButton1.Checked == true) { yinsu = "温度、振动"; }
            string id = ?
            //string tabText = txtName.Text + yinsu;
            //string str = "'" + txtName.Text + "'," + "'" + txtyunxinglicheng.Text + "'," + "'" + txtyingdu.Text + "'," + "'" + txtlashenqiangdu + "'," + "'" + txtladuanshenchanglv + "'," + "'" + yinsu + "'," + "'" + id + "'";
            string str = "'" + txtName.Text + "'," + "'" + txtyunxinglicheng.Text + "'," + "'" + txtyingdu.Text + "'," + "'" + txtlashenqiangdu.Text + "'," + "'" + txtladuanshenchanglv.Text + "'," + "'" + yinsu + "'," + "'" + id + "'";
            string sq = @"Data Source=" + dbPath;
            m = new SQLiteConnection(sq);
            m.Open();
            string sql = "insert into " + tableName + " (传感器型号,运行里程,硬度,拉伸强度,拉断伸长率,因素,材料特性ID) values (" + str + ")";
            SQLiteCommand command = new SQLiteCommand(sql, m);
            command.ExecuteNonQuery();
            m.Close();
        }

怎么让添加一些参数后,这行数据的ID自动加一,以便于以后根据id删除数据
string id那应该怎么写

  • 写回答

2条回答 默认 最新

  • threenewbee 2019-11-07 10:44
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。