回 帖 发 新 帖 刷新版面

主题:求助-把变量写入到数据库字段

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

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        int s=0;
        public void Exp()
        {
            while (s < 100)
            {
                s++;
                textBox1.Text = s.ToString();
                Application.DoEvents();
                //请帮我加把S值写入数据库字段的代码
            }
        }
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Exp();
        }
    }
}

回复列表 (共1个回复)

沙发

说明:
  我想把每次S++的结果保存到数据库中,如何代码实现
不好意思哦,我太菜,又来求帮助了,麻烦各位了

数据库是ACCESS的,连接代码已做好

结构如下:

文件名:md.mdb 表名:Tatble 字段名:num 长整型


我来回复

您尚未登录,请登录后再回复。点此登录或注册