Giter VIP home page Giter VIP logo

nextreports-designer's Introduction

NextReports

[NextReports] (http://www.next-reports.com/) is a free Java business reporting software.

Components

  • NextReports Designer is an application able to design in-grid reports, using connections to most popular databases like Oracle, MySql, MSSQL, PostgreSQL, Firebird, Derby and SQLite.
    NextReports Designer has an intuitive interface that makes report creation a quick and easy task. The designer has a convenient single-click publish/download mechanism for NextReports Server.
    NextReports Designer is now fully open source and it can be find here. You can send pull requests, fork or add issues.

  • NextReports Engine is a Java platform development library which can be used to run NextReports inside your applications. This library is light and very easy to use.
    NextReports Engine is now fully open source and it can be find here. You can send pull requests, fork or add issues.

  • NextReports Server allows you to schedule NextReports and Jasper reports and to automatically deliver reports via E-mail, FTP, SSH, Windows Share, WebDAV to your business contacts in most popular file formats like HTML, EXCEL, PDF, RTF, CSV, TSV, TXT, XML.
    NextReports Server will present your charts, table reports and alarm reports in real time inside dashboards.
    Users can perform data analyze using drill-down and pivot structures.
    NextReports Server is now fully open source and it can be find here. You can send pull requests, fork or add issues.

Acknowledgement


JetBrains is supporting NextReports open source project with its smart Java IDE.


YourKit is supporting NextReports open source project with its full-featured Java Profiler.
YourKit, LLC is the creator of innovative and intelligent tools for profiling Java and .NET applications.
Take a look at YourKit's leading software products: YourKit Java Profiler and YourKit .NET Profiler.

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

nextreports-designer's People

Contributors

decebals avatar dpmihai avatar nextreports avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

nextreports-designer's Issues

Compiling on Mac OS X 10.10 Yosemite

Hi,

I've pulled 7.4 from git but I can't get it to compile on Mac OS X 10.10 (Yosemite). Apparently there are some files missing (Excel exporter)

I tried with both latest JDK 1.7 and 1.8. Please see the errors I have with 1.8 (similar to those in 1.7) in the next message (apparently this one is too big to post)

Thanks a lot,

Franck Horlaville
Senior Systems Engineer
Prism-DM

compile:
    [mkdir] Created dir: /Users/franck/Documents/Projects/nextreports-designer/target/classes
    [javac] /Users/franck/Documents/Projects/nextreports-designer/build.xml:119: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 605 source files to /Users/franck/Documents/Projects/nextreports-designer/target/classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.7
    [javac] /Users/franck/Documents/Projects/nextreports-designer/src/ro/nextreports/designer/action/report/layout/export/ExportToExcelXAction.java:12: error: cannot find symbol
    [javac] import ro.nextreports.engine.exporter.XlsxExporter;
    [javac]                                      ^
    [javac]   symbol:   class XlsxExporter
    [javac]   location: package ro.nextreports.engine.exporter
    [javac] /Users/franck/Documents/Projects/nextreports-designer/src/ro/nextreports/designer/datasource/DefaultDataSourceManager.java:33: warning: BASE64Encoder is internal proprietary API and may be removed in a future release
    [javac] import sun.misc.BASE64Encoder;
    [javac]                ^
    [javac] /Users/franck/Documents/Projects/nextreports-designer/src/ro/nextreports/designer/datasource/DefaultDataSourceManager.java:34: warning: BASE64Decoder is internal proprietary API and may be removed in a future release
    [javac] import sun.misc.BASE64Decoder;
    [javac]                ^
    [javac] /Users/franck/Documents/Projects/nextreports-designer/src/ro/nextreports/designer/action/report/layout/export/ExportToExcelXAction.java:18: error: cannot find symbol
    [javac]         exportType = ReportRunner.EXCEL_XLSX_FORMAT;
    [javac]                                  ^
    [javac]   symbol:   variable EXCEL_XLSX_FORMAT
    [javac]   location: class ReportRunner
    [javac] /Users/franck/Documents/Projects/nextreports-designer/src/ro/nextreports/designer/action/report/layout/export/ExportToExcelXAction.java:37: error: cannot find symbol
    [javac]         ResultExporter exporter = new XlsxExporter(bean);
    [javac]                                       ^
    [javac]   symbol:   class XlsxExporter
    [javac]   location: class ExportToExcelXAction
    [javac] /Users/franck/Documents/Projects/nextreports-designer/src/ro/nextreports/designer/datasource/DefaultDataSourceManager.java:220: warning: BASE64Encoder is internal proprietary API and may be removed in a future release
    [javac]             return new BASE64Encoder().encode(enc.getBytes(CHARSET_NAME));
    [javac]                        ^
    [javac] /Users/franck/Documents/Projects/nextreports-designer/src/ro/nextreports/designer/datasource/DefaultDataSourceManager.java:228: warning: BASE64Decoder is internal proprietary API and may be removed in a future release
    [javac]             byte[] bytes = new BASE64Decoder().decodeBuffer(cipherText);
    [javac]                                ^
    [javac] /Users/franck/Documents/Projects/nextreports-designer/src/ro/nextreports/designer/ui/sqleditor/syntax/SyntaxView.java:63: warning: [deprecation] setGraphicsStyle(Graphics,TokenType) in SyntaxStyles has been deprecated
    [javac]                     SyntaxStyles.getInstance().setGraphicsStyle(graphics,
    [javac]                                               ^
    [javac] /Users/franck/Documents/Projects/nextreports-designer/src/ro/nextreports/designer/ui/sqleditor/syntax/SyntaxView.java:89: warning: [deprecation] setGraphicsStyle(Graphics,TokenType) in SyntaxStyles has been deprecated
    [javac]                 SyntaxStyles.getInstance().setGraphicsStyle(graphics, TokenType.DEFAULT);
    [javac]                                           ^
    [javac] Note: Some input files use unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.
    [javac] 3 errors
    [javac] 7 warnings

BUILD FAILED
/Users/franck/Documents/Projects/nextreports-designer/build.xml:119: Compile failed; see the compiler error output for details.

MySQL type 'decimal unsigned' is not being recognised

Hi again,
The MySQL type 'decimal unsigned' is not being recognised in NextReports. I suggest adding it to file nextreports-engine/src/ro/nextreports/engine/querybuilder/sql/dialect/MySQLDialect.java on line 46.

Thanks a lot,

Franck Horlaville
Senior Systems Engineer
Prism-DM

Postgres jdbc type

Hi
I have run in a problem to use postrges with next reports.

If i use json or serial type columns i get this type of error:

ro.nextreports.engine.querybuilder.sql.dialect.DialectException: Cannot match the type 'json' to a jdbc type

or
ro.nextreports.engine.querybuilder.sql.dialect.DialectException: Cannot match the type 'serial' to a jdbc type

'0000-00-00 00:00:00' value in DateTime breaks queries

  • create query returning mysql table data with a column of type DATETIME
  • have at least one of the rows containing the zero date value ad indicated in subject

=> the query will return empty and the log indicates

SQLException: java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.