"The length, precision, or scale attribute for column, or type mapping 'VARCHAR(1000000)' is not valid."
Varchar is definitely limited to 32 thousand bytes as its max length, see: http://db.apache.org/derby/docs/dev/ref/rrefsqlj41207.html
If you really need a enormous length value, I think you need to use a CLOB. thanks, bryan
