HsqlException: data exception
The maximum size of a VARCHAR column is user-defined. If the inserted data is larger than this, an exception is thrown. The example below defines a table with a VARCHAR(100) column, which limits the size to 100 characters. CREATE TABLE T (ID INT, DATA VARCHAR(100)) You can use a database manager and execute the SCRIPT … Read more