You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/net/sf/persism/Messages.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -40,10 +40,10 @@ enum Messages {
40
40
PossibleOverflow("Possible overflow column %s - Target type is %s and Value type is %s"),
41
41
PropertyShouldBeAnObjectType("Property %s for column %s for class %s should be an Object type to properly detect NULL for defaults (change it from the primitive type to its Boxed version)"),
42
42
SettersFoundInReadOnlyObject("Setters found in read only object %s %s"),
43
-
UnknownSQLType("Unknown SQL TYPE: %s"),
43
+
UnknownSQLType("Convert: Unknown SQL TYPE: %s"),
44
44
ConverterValueTypeNotYetSupported("%s not yet supported"),
45
45
ConverterDoNotUseClobOrBlobAsAPropertyType("Usually you should not use blob or clob as a property type on a POJO. Blob maps to byteArray, Clob maps to String"),
46
-
ColumnTypeNotKnownForSQLType("Column type not known for SQL type %s. Reading as Object"),
46
+
ColumnTypeNotKnownForSQLType("Column type not known for SQL type %s. Reading column: %s as Object"),
47
47
InappropriateMethodUsedForSQLTypeInstance("%s It seems you're using the %s method with %s. You might prefer to use the %s method instead for better 'Find Usages'"),
48
48
UnknownTypeForPrimaryGeneratedKey("Unknown type for primary/generated key: %s. using getObject"),
0 commit comments