c# dataAdapter.fill()报错“至少有一个参数没有指定” 求高手帮忙!

DateTimetime1=DateTimeOne.Value;DateTimetime2=DateTimeTwo.Value;//取得数据集stringconnstri... DateTime time1 = DateTimeOne.Value;
DateTime time2 = DateTimeTwo.Value;
//取得数据集
string connstring = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\zjs\Desktop\Curve\DynamicCurce\DynamicCurce\bin\Debug\CurceData.mdb";
System.Data.OleDb.OleDbConnection conn1 = new System.Data.OleDb.OleDbConnection(connstring);
System.Data.OleDb.OleDbCommand command1 = new System.Data.OleDb.OleDbCommand("select * from CurceValue where CurceDate between @time1 and @time2", conn1);
System.Data.OleDb.OleDbDataAdapter ada1 = new System.Data.OleDb.OleDbDataAdapter(command1);
DataSet c_ds = new DataSet();
try
{
conn1.Open();
ada1.Fill(c_ds);
}
finally
{
conn1.Close();
command1.Dispose();
conn1.Dispose();
}
//为报表浏览器指定报表文件
this.reportViewer1.LocalReport.ReportEmbeddedResource = "report.Report1.rdlc";
//指定数据集,数据集名称后为表,不是DataSet类型的数据集
this.reportViewer1.LocalReport.DataSources.Clear();
this.reportViewer1.LocalReport.DataSources.Add(new Microsoft.Reporting.WinForms.ReportDataSource("myds", c_ds.Tables[0]));
//显示报表
this.reportViewer1.RefreshReport();
展开
 我来答
百度网友07314f3
2013-05-08 · TA获得超过233个赞
知道小有建树答主
回答量:138
采纳率:0%
帮助的人:110万
展开全部
问题在于你没有给两个参数@time1,@time2赋值。你的那种不叫给数据库参数赋值。而是给两个变量赋值,根本就没有传到数据库端。

var para = new []
{
new SqlParameter("@time1",SqlDbType.DateTime){Value =time1},
new SqlParameter("@time2",SqlDbType.DateTime){Value = time2},
}
在command1中执行时将声明的para参数传入方法中即可。
gaoshang212
2013-05-08 · TA获得超过171个赞
知道小有建树答主
回答量:209
采纳率:0%
帮助的人:198万
展开全部
没看到 你给这两个参数@time1,@time2 负值呀 !
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
linyingkaia
2013-05-08 · 超过24用户采纳过TA的回答
知道答主
回答量:89
采纳率:0%
帮助的人:52.2万
展开全部
没给 @time1 、 @time2参数传值
追问
DateTime time1 = DateTimeOne.Value;
DateTime time2 = DateTimeTwo.Value;
@time1 、 @time2这样赋值不对吗?应该怎么赋值?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式