I'm making a web application in Grails, and I have this domain Class
String name
String query
static mapping = {
query type: "text"}
but when I bring the query from another query in Oracle, It returns a really huge String and I get this Error:
ORA-01461: can bind a LONG value only for insert into a LONG column
From the database that i get the information, the fiels is varchar(63760)
Any idea? thanks