新手求助c#连接access数据库的问题 连数据库总是提示“至少一个参数没有被指定值” string s = textbox1.text; string strSQL = "insert into test(test) values (s);";//s换成具体的字符串就没问题了,但不能直接用s不知道怎么回 事。 ExecuteAccessNonQuery(strSQL); 就这几句上有问题, 当把sql语句中的s换成比如"asdasd"等等的字符串时就没问题。 但直接用s就报错。 我也不知道哪里有问题,求解决。
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 freeCureIn : Form { public freeCureIn() { InitializeComponent(); }