MySQL open source reporting services

前端 未结 3 1733
你的背包
你的背包 2021-02-07 11:31

I am currently working on a project where reporting services are required. The database back end is built using MySQL and I would like to have something with similar functional

相关标签:
3条回答
  • 2021-02-07 11:33

    For a PHP MYSQL Reporting tool, try the Smart Report Engine. You can use it as a native PHP engine or a larval package. with very few lines of code like the following code example, you can create a professional auto dynamic report from your project.

    $report = new ReportOptions(SRE_PUBLIC_REPORT);
    $report->select_tables(array("items"))
           ->set_grouping(array("country"))
           ->select_all_fields();
    $engine = new CustomEngine($report);
    $report_path = $engine->create_report();
    

    More code examples of using Smart Report Engine

    0 讨论(0)
  • 2021-02-07 11:39

    When you say "reporting service" I suppose you mean "report programming and generating system." Is that right?

    • Jasper - http://community.jaspersoft.com/

    • BIRT - http://www.eclipse.org/birt/phoenix/

    • Crystal Reports, if you can deal with an non-open-source system.

    These all work fine with MySQL.

    Unfortunately all these reporting systems are engaged in some ridiculous spin where they're telling themselves they are "business intelligence solutions" rather than report programming schemes. So, you'll do some digging through the marketing BS to find out solutions to simple problems like "how do I list sales of microbrew beer by zip code" or whatever you want to report about.

    0 讨论(0)
  • 2021-02-07 11:39

    For MySQL reporting you could try one of the following. Unfortunately none of them are open source.

    • Smart report maker

    • MySQL Pivot table generator - recommended if you want to create analytical & summary reports

    • Navicat - very powerful

    0 讨论(0)
提交回复
热议问题