I try to connect a nexusdb table with unitable but when the table is opened, it's raising an error message "Option 5 not supported".
This error happens when i have string fields with size less than 32.
Example:
CREATE TABLE TEST (ID INTEGER) >>> raise an error
CREATE TABLE TEST_2(ID INTEGER, CODE VARCHAR(31)) >>> raise an error
CREATE TABLE TEST_3(ID INTEGER, CODE VARCHAR(32)) >>> works fine
If I try to open the same table with TTable or TADOTable it's works too.
Could you help me?