学习学习										
					
	
	
	
	      
				
											我用的程序是这样的:
 try
                {
                    string strCon = " Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = d:/chysj/ywhx.mdb ";
                    OleDbConnection myConn = new OleDbConnection(strCon);
                    myConn.Open();
                    string strIn = "INSERT INTO 注册表(用户名,密码,E-mail)  VALUES ('"+this.textBox1.Text+"','"+this.textBox2.Text+"','" +this.textBox4.Text+" ')";
                    OleDbCommand myCommand = new OleDbCommand(strIn, myConn);
                    myCommand.ExecuteNonQuery();
                    myConn.Close();
                }
                catch (Exception ed)
                {
                    MessageBox.Show("注册记录错误信息: " + ed.ToString(), "错误!");
                }
调试的时候没错误,但是当输入文本的时候就出现insert into语法错误,
暂时还不知道问题出在那里										
					
	
	
	
	      
 
											





 
	     
											


