[求助]我想插入数据,应如何写
我想插入数据,应如何写
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: 这行代码将数据加载到表“dataSet1.gpjg”中。您可以根据需要移动或移除它。
this.gpjgTableAdapter.Fill(this.dataSet1.gpjg);
}
}
}