difference between RDLC and SSRS

瘦欲@ 提交于 2019-12-04 19:07:57

问题


what is the difference between local/Web data reports (RDLC) and SSRS?


回答1:


SSRS (SQL Server Reporting Services) is a part of some editions of Microsoft SQL Server (SQL Server Express with Advanced Services as well as the non-free verisons). It allows you to process server-side reports (.rdl files).

The ReportViewer control included in Visual Studio allows you to process client-side reports (.rdlc files). It does not require SQL Server.

Since both components use the same reporting engine, RDLs and RDLCs use the same XML schema. Thus, most material you find online for SSRS also applies to RDLCs.

The following MSDN article outlines the difference between RDL and RDLC files:

  • Converting RDL and RDLC Files


来源:https://stackoverflow.com/questions/5165571/difference-between-rdlc-and-ssrs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!