Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How do I create a report from a DB query?

New Here ,
Feb 15, 2008 Feb 15, 2008
I have a few queries that I run in SQL Server to generate reports from my database. I know how to access a database from Dreamweaver, but I've never generated reports for viewing/printing. I searched the Exchange and did not see any extensions. I also searched Google and couldn't really find anything useful.

What is the easiest way to display output from a db query in report format for viewing and/or printing?

Thanks
TOPICS
Server side applications
385
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 15, 2008 Feb 15, 2008
> What is the easiest way to display output from a db query in report format
> for
> viewing and/or printing?

easiest would be to draw your report and then hand it off ot a back end web
developer. ;o)

Otherwise, the basic premise is to write a page that queries the DB, and
then generates HTML to display the data.

Do you work with any scripting language right now (ASP/.net/PHP/RoR/CF?)

-Darrel


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 15, 2008 Feb 15, 2008
Yes, I did a lot of ASP/DB work in Dreamweaver, but that was quite a few years ago. So I know I can query the database and format the output. I was just wondering if any "report writing" capabilities have been implemented in the last few years to make is easier to create and format reports. Sounds like Dreamweaver is still lacking in this area. I think DNN has a "report" module. I may check that out.

Thanks
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 15, 2008 Feb 15, 2008
LATEST
> ago. So I know I can query the database and format the output. I was just
> wondering if any "report writing" capabilities have been implemented in
> the
> last few years to make is easier to create and format reports. Sounds like
> Dreamweaver is still lacking in this area. I think DNN has a "report"
> module. I
> may check that out.

Dreamweaver is an HTML editor, DNN is a web CMS platform, so they really are
different beasts.

There are lots of report writing systems...in the MS world, there's MS's own
reporting services, crystal reports, and, as you state, plenty of add ons
and modules for a variety of CMS prosducts.

-Darrel


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 15, 2008 Feb 15, 2008
The best (although by no way the cheapest) is to use Crystal Reports or (if
you are using SQL Server) possibly SQL Server Reporting Services.

There are plenty of charting tools out there that will link to your DB and
generate the report as a web page but from experience they are difficult to
set up and usually very limited in functionality. Crystal or SSRS are proper
reporting tools and while expensive, will do everything you could ever want
from a reporting tool. I have recently designed a corporate booking system
for a company and used Crystal for their numerous reports and it is very,
very good.

"musicman2112" <webforumsuser@macromedia.com> wrote in message
news:fp4blg$36q$1@forums.macromedia.com...
>I have a few queries that I run in SQL Server to generate reports from my
> database. I know how to access a database from Dreamweaver, but I've never
> generated reports for viewing/printing. I searched the Exchange and did
> not see
> any extensions. I also searched Google and couldn't really find anything
> useful.
>
> What is the easiest way to display output from a db query in report format
> for
> viewing and/or printing?
>
> Thanks
>


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines