I am trying to store a string[] in a database with grails but tinyblob isn't large enough. I've tried changing the mapping to blob and longblob but when I do this I get an error:
[Ljava.lang.String; cannot be cast to java.sql.Blob
Next I tried changing the maxSize within the domain constraints but I get the error
No such property: maxSize for class:
Any ideas on how to get this to work?
typeorsqlTypefor the mapping? Also, wether you can store String[] as a blob (and be able to use it) depends on your DBMS. – GalmWing Apr 28 '12 at 23:24