111,119
社区成员
发帖
与我相关
我的任务
分享

String timeid = textBox1.Text;
String sql = "select * from Details where TimeID=TimeID";
OleDbCommand command = DB.getOleDbCommand(sql);
command.Parameters.AddWithValue("@TimeID",timeid);
String timeid = textBox1.Text;
String sql = "select * from Details where TimeID=@TimeID";
OleDbCommand command = DB.getOleDbCommand(sql);
command.Parameters.AddWithValue("@TimeID",timeid);