程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> visualc#+access-數據寫不進去access表中,怎麼改呢?

visualc#+access-數據寫不進去access表中,怎麼改呢?

編輯:編程綜合問答
數據寫不進去access表中,怎麼改呢?

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.Data.OleDb;

namespace 專科醫院門診系統_眼科_
{

public partial class 掛號界面 : Form
{

    OleDbConnection con = new OleDbConnection();
    string str = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\design\vc\project\專科醫院門診系統(眼科)\db1.accdb";
    public 掛號界面()
    {
        InitializeComponent();
        con.ConnectionString = str;
        button1.Click += new EventHandler(button1_Click);
        button2.Click += new EventHandler(button2_Click);
        button3.Click += new EventHandler(button3_Click);
    }
    private void textBox1_TextChanged(object sender, EventArgs e)
    {

    }

    private void textBox2_TextChanged(object sender, EventArgs e)
    {

    }

    private void textBox3_TextChanged(object sender, EventArgs e)
    {

    }

    private void textBox4_TextChanged(object sender, EventArgs e)
    {

    }
    private void textBox5_TextChanged(object sender, EventArgs e)
    {

    }
    private void textBox6_TextChanged(object sender, EventArgs e)
    {

    }   
    private void button1_Click(object sender, EventArgs e)
    {
        掛號繳費選擇界面 frm = new 掛號繳費選擇界面();
        frm.Show();
        Hide();
    }

    private void button2_Click(object sender, EventArgs e)
    {
        if (textBox1.Text != "" && textBox2.Text != ""&& textBox3.Text != ""&& textBox4.Text != ""&& textBox5.Text != ""&& textBox6.Text != "")
        {
        string a = textBox1 .Text ;
        string b = textBox2 .Text ;
        string c = textBox3 .Text ;
        string d = textBox4 .Text ;
        string f = textBox5 .Text ;
        string g = textBox6 .Text ;
        OleDbCommand cmd = new OleDbCommand(@"insert into [patient](ID,名字,年齡,性別,電話號碼,科室)  values(" + a + ",'" + b + "'," + c + ",'" + d + "',"+ f + ",'"+ g + "')");
        con.Open();
        cmd.Connection = con;
        cmd.ExecuteNonQuery();
        con.Close();
        MessageBox.Show("掛號成功!");
        }
        else
        {

         MessageBox .Show ("請輸入完整的掛號信息");
        }



        textBox1.Text = textBox2.Text = textBox3.Text = textBox4.Text = textBox5.Text = textBox6.Text = string.Empty;
    }
    private void button3_Click(object sender, EventArgs e)
    {
        textBox1.Text = textBox2.Text = textBox3.Text = textBox4.Text = textBox5.Text =textBox6.Text = string.Empty;
    }
    private void 掛號界面_Load(object sender, EventArgs e)
    {

    }
}

}
圖片說明
圖片說明
圖片說明

最佳回答:


采納,將代碼發網盤,可以幫你。

qq_27410413
devmiao
devmiao
devmiao
qq_27410413
devmiao
qq_27410413
devmiao
qq_27410413
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved