Hello,
there is an infinite loop while generation classes if I've got a column which JDBC type is -10 (unstandard, MS SQLSERVER "ntext" type, not part of legal JDBC Types),
the sql2java rises a StackOverflow error, because when computing the error message, there is a loop while calling getJavaTypeAsTypeName() on unrecognised java type !
Yet I killed the default: option, and just modified the return to return "NO TYPE FOUND FOR " + getType();
Cheers, r0main
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
there is an infinite loop while generation classes if I've got a column which JDBC type is -10 (unstandard, MS SQLSERVER "ntext" type, not part of legal JDBC Types),
the sql2java rises a StackOverflow error, because when computing the error message, there is a loop while calling getJavaTypeAsTypeName() on unrecognised java type !
Yet I killed the default: option, and just modified the return to return "NO TYPE FOUND FOR " + getType();
Cheers, r0main