visual c# 和access的 运行没错误,但是调试了运行没反应 button2

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
{

    public 挂号界面()
    {
        InitializeComponent();
    }


    private void button1_Click(object sender, EventArgs e)
    {
        挂号缴费选择界面 frm = new 挂号缴费选择界面();
        frm.Show();
        Hide();
    }
    private void button2_Click(object sender, EventArgs e)
    {
        string a = textBox1 .Text ;
        string b = textBox2 .Text ;
        string c = textBox3 .Text ;
        string d = textBox4 .Text ;
        string f = textBox5 .Text ;
        string g = textBox6 .Text ;
        OleDbConnection conn = new OleDbConnection();
        conn.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\design\vc\project\专科医院门诊系统(眼科)\db1.accdb";
        conn.Open();
        string str = "insert into patient ([ID],名字,年龄,性别,电话号码,科室) values (('" + a + "','" + b + "','" + c + "','" + d + "','" + f + "','" + g + "')";
        OleDbCommand cmd=new OleDbCommand();
        cmd.Connection=conn;
        cmd.CommandText=str;
        cmd.ExecuteNonQuery();
        cmd.Dispose();
        conn.Close();
        conn.Dispose();
        MessageBox.Show("挂号成功");
    }
    private void button3_Click(object sender, EventArgs e)
    {
        textBox1.Text = textBox2.Text = textBox3.Text = textBox4.Text = textBox5.Text = string.Empty;
    }
    private void 挂号界面_Load(object sender, EventArgs e)
    {

    }
}

}

难道是数据库连接或者 insert 语句错误吗?
求大神帮忙看下,帮我改下,小弟实在是小白啊

图片说明
图片说明
加了几段代码后就这样子了 。 大神帮忙改下把 !!!!

点了button2
挂号成功没有出来么?报错了么?

目测多了一个前括号。

另外这些都是字符串么?如果是数字,不要引号,总之都是细节问题,自己好好检查。

string str = "insert into patient ([ID],名字,年龄,性别,电话号码,科室) values (('" + a + "','" + b + "','" + c + "','" + d + "','" + f + "','" + g + "')";
改成
string str = "insert into patient ([ID],名字,年龄,性别,电话号码,科室) values ('" + a + "','" + b + "','" + c + "','" + d + "','" + f + "','" + g + "')";
你在values后面多了一个括号