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