关于上面,我找到问题的所在了,不是连接的问题,是我的SQL语句有问题,请问大家写拼凑SQL语句时应该怎么写呢?我上述这个问题是由于字段多,写的时候不知道哪里出了问题,当我改成两个或三个字段,问题就没有了,操作也没问题..我的语句如下:
string InsertSQL ="insert into BuyIn(Item_code,Item_type,Item_name";
InsertSQL += ",Buy_quantity,Unit,Item_price,Buyer_name,Buy_time,Remark) values( '";
InsertSQL += textBox1.Text+ "','";
InsertSQL += textBox2.Text+ "','";
InsertSQL += textBox3.Text+ "',";
InsertSQL += textBox4.Text+ ",'";
InsertSQL += textBox6.Text+ "','";
InsertSQL += textBox7.Text+ "','";
InsertSQL += textBox8.Text+ "','";
InsertSQL += textBox9.Text+ "','";
InsertSQL += textBox11.Text+ "')";
麻烦大家看下,问题在哪呢?