Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
empire-db-2.4.3
-
None
Description
When using the empire-db-codegen project to reverse engineer an existing database the data type BLOB is broken. For example the getter in the record for column BLOB_VALUE (Data Type BLOB) is generated as:
public [Ljava.lang.Byte; getBlobValue() {
return ([Ljava.lang.Byte;)super.getValue(getTable().BLOB_VALUE);
}
"[Ljava.lang.Byte;" is clearly wrong.