Is there a free web interface that will be bound to the sql server database and allow basic column filtering and data export?

I was asked to find a pre-packaged web interface that can be dumped on top of the SQL Server database and allow a non-technical user to view it. The user must be able to:

  • View table data.
  • Filter the results by column.
  • Save the filters they applied.
  • Export the data they view to succeed.
  • Must be free for commercial use.
  • No need to write or edit data.

Is there such a software package?

So far I have looked at OData Explorer , but I cannot find a way to save or export the filtered data.

Edit: Ideally, it should be Microsoft.Net/Silverlight, etc.

+4
source share
1 answer

Although it does not quite meet all of the above requirements, we decided to use an Excel plugin called PowerPivot . We can easily create an OData service that consumes our database, and our users can then access the data directly through excel.

+1
source

Source: https://habr.com/ru/post/1432108/


All Articles