RDCL 2008 /*本地查询*/
我是 RDCL 2008 格式的新手。我使用 RDLC 2005 格式一段时间,效果很好。然而,最近我的公司正在从 RDLC 2005 格式更改为 RDLC 2008 格式。原来的报表渲染引擎崩溃了。因为在 RDLC 2008 格式中,连接字符串和查询字符串变成了
和
有谁知道如何从
类似于
?
谢谢!
I am new for RDCL 2008 format. I used RDLC 2005 format for a while and it works fine. However, recently, my company is changing to RDLC 2008 format from RDLC 2005 format. The original report rendering engine crashed. Because in RDLC 2008 format, the connection string and the query string became <ConnectString>/* Local Connection */</ConnectString>
and <CommandText>/* Local Query */</CommandText>
Does any one know how change from<CommandText>/* Local Query */</CommandText>
to something like <CommandText>select * from US001_USER</CommandText>
?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我自己找到了解决方案。
实际上,我正在使用 VS 2010 创建 RDLC 2010 格式文件。但是,如果我使用 VS 2008(带有 SSRS 10.0)创建 RDL 2010 格式文件,则
ConnectString
和CommandText
将被填充。 RDL 2010 文件只是通过重命名文件简单地更改为 RDLC 2010 文件。I found the solution myself.
Actually, I was using VS 2010 to create RDLC 2010 format file. However if I use VS 2008 (with SSRS 10.0) to create RDL 2010 format file, the
ConnectString
andCommandText
will be filled. RDL 2010 file is just simply changed to RDLC 2010 file by renaming the file.您还可以使用报表生成器 2.0。
Report Builder 3.0使用RDLC2010,它只能在报表服务器上使用,不能使用reportviewer控件嵌入。 MS 承诺提供更新的查看器。
另请参阅 GotReportViewer.com - 他们有一个程序源来读取所有信息...页面右下角。
You can also use Report Builder 2.0.
Report Builder 3.0 uses RDLC2010 which is only usable on a report server, not embedded using reportviewer control. MS promises a updated viewer.
Also see the GotReportViewer.com - They have a source for a program to read all the info... Bottom Right of page.