Skip to content
This repository has been archived by the owner on Sep 20, 2018. It is now read-only.

Generate additional csv > columns #13

Open
adriens opened this issue Nov 14, 2017 · 0 comments
Open

Generate additional csv > columns #13

adriens opened this issue Nov 14, 2017 · 0 comments

Comments

@adriens
Copy link
Owner

adriens commented Nov 14, 2017

generate csv with tableFullName as first column will be used to make reports between columns csv and table csv

and all other available available datas :

columnNode.setProperty("columnOrdinalPosition", column.getOrdinalPosition());
                        columnNode.setProperty("columnDataType", column.getColumnDataType().toString());
                        columnNode.setProperty("name", column.getName());
                        columnNode.setProperty("fullName", column.getFullName());
                        if (column.getDefaultValue() != null) {
                            columnNode.setProperty("defaultValue", column.getDefaultValue());
                        }

                        if (column.getLookupKey() != null) {
                            columnNode.setProperty("lookupKey", column.getLookupKey());
                        }

                        if (column.getRemarks() != null) {
                            columnNode.setProperty("remarks", column.getRemarks());
                        }

                        if (column.getShortName() != null) {
                            columnNode.setProperty("shortName", column.getShortName());
                        }
                        columnNode.setProperty("size", column.getSize());
                        columnNode.setProperty("width", column.getWidth());

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant