Skip to content

3.00.5.1

Latest

Choose a tag to compare

@chenxiYuDolphinDB chenxiYuDolphinDB released this 13 May 02:38

New Features

  • BasicTable now supports constructors using Java native types.

  • BasicTable now supports the addColumn method for Java native types, allowing columns to be added to the table.

Compatibility Notes

Starting from Java API version 3.00.5.1, the following addColumn methods were added:

public void addColumn(String colName, List<?> col)
public void addColumn(String colName, Object[] col)

Previously, BasicTable only provided public void addColumn(String colName, Vector col)

If the second argument col needs to be null, its type must be explicitly declared, for example: (List<?>) null, (Vector) null, or (Object[]) null.