We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Nathan wants the column names as well.
Sorry, something went wrong.
Actually column names are already there.
one can get columns of the table by:
List<TypeTableColumn> columns = table.getColumns();
And then get names and types by using getName and getCellType functions (both return a String):
getName
getCellType
String columnDesc = column.getName() + "(" + column.getCellType() + ")";
I updated GetAllTables.java example file so now column names are printed too:
https://github.com/JeffersonLab/ccdb/blob/1.07/java/src/javaExamples/GetAllTables.java#L31
Subissues #38 #39
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: