views:

37

answers:

3

Essentially I want to be able to feed it data and see fancy charts and graphs displaying information out of the data based on x amount of transactions etc etc and/or SQL statements etc.

It does not matter if it is client based or web based. Open source would be great but commercial is fine also.

Thanks

A: 

This looks like a job for Google! Well here's some info anyway :)

Crystal Reports is one of the most popular commercial systems for more of a reporting server.

Microsoft Excell can be used to create reports out of your csv data. You'll have to create the excell sheets yourself and dump the data. It can be automated with VBScript or .NET.

Also look into bluya for a free solution but I don't really know much about it.

Oh and .NET has the sql report thing for free. It's built in as a asp.net control so you can see it in the visual studio toolbox.

James Santiago
A: 

Have a look at myDBR. It allows you to easily generate reports and also takes care of the report layout.

To make a report you just write a stored procedure (either with the included SQL editor or with your preferred DB tool). The data generated by the stored procedure is then interpreted by myDBR. For example to create a chart of your monthly sales you would write the following code:

select 'dbr.chart', 'Column', '2D Column';
select Name, SUM(Items)
FROM demo.TestTable
GROUP BY Name;

There are plenty of chart types and configuration options available.

myDBR community version is free of charge, and the premium version is only 129 EUR / year.

Wolfgang
A: 

Check here for data selection flash demo, here for data filtering flash demo and check here for working with charts. They are easy to follow demos, hope you get some hints of feeding data and working with it in reporting.

HERBERTS