n-cube-editor is a web-based GUI editor for editing and managing n-cubes.
Copyright 2012-2016 Cedar Software, LLC Licensed under the Apache License, Version 2.0
Visit http://ncube.io to see a running version of the NCUBE Editor. Play around with it and send your feedback. This project is very actively being developed.
NCUBE Editor has been tested with MySQL, Oracle, HSQLDB, and MSSQL. It will likely run on all other SQL databases. NCUBE has been designed to allow other persisters to be added. For example, it would not be that difficult to add a MongoDB persister for NCUBE.
Make sure to set the following environment variables (or -D system properties) in order to specify the connection to your database: As Java system properties (using MySQL):
-DNCE_JDBC_DRIVER="com.mysql.jdbc.Driver"
-DNCE_JDBC_URL="jdbc:mysql://localhost:3306/ncube"
-DNCE_JDBC_USER="ncube"
-DNCE_JDBC_PWD="ncube"
-DNCE_POOL_QUERY="/* ping */"
or environment variables (using MySQL):
NCE_JDBC_DRIVER=com.mysql.jdbc.Driver
NCE_JDBC_URL=jdbc:mysql://localhost:3306/ncube
NCE_JDBC_USER=ncube
NCE_JDBC_PWD=ncube
NCE_POOL_QUERY="/* ping */"
Set up a database with a schema named 'ncube' and a single table named 'n_cube'. For the DDL see mysql-schema.ddl
See changelog.md for revision history.