-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
consider adding JDBC type to @Column or a zoo of built-in AttributeConverters #619
Comments
Of course, there's also a Fourth approachwhich is just to do what Hibernate does today and use public @interface Column {
...
int type() default Integer.MIN_VALUE;
} letting me write: @Column(type=Types.DECIMAL)
int total; The payoff for the loss of typesafety is that the set of allowed type codes is provider-extensible, which is definitely useful. |
I think both, the first and second approach are ok, though the first one seems easier as the second might also require the addition of The fourth option is provider extensible, but I think for provider specifics, it's best to stick to custom annotations. Also, I don't think that |
Well, OK, but it's |
Ah, you were referring to the JDK enum. I guess it's ok to reuse that, though that limits JPA to the types JDBC vendors agree on. I think I prefer that we leave the door open to allow extensions that go beyond the JDBC spec. |
Yeah, I suppose it would not be crazy to introduce our own enum, to allow for stuff like |
Thinking about the need for extensibility here—and in particular the need to eventually support SQL array types here—I'm moved to propose another simpler option. We could let you write: @Column(type="varchar")
long number; Where the string
We might in principle also add:
but these types have extremely weak and varying semantics in practice, and are not very suitable when considered as cross-platform abstractions. I would leave them off the list. Implementations would be free to extend this list to cover:
Of course, this is a stringly-typed enumeration, which means that users will attempt to write unportable things, like, for example, |
I would like to mention that array support is somewhat "special" in the sense that Hibernate ORM (and by extension probably other JPA providers) need to know the element type to produce properly typed results for array functions. So maybe it's better to move arrays out of this equation and instead consider a |
Yes but that's one of the advantages of using a string here. The user can write |
But note that this is not a proposal to add support for arrays or JSON. It's only about how to replace |
Currently there are two ways to customize the column type mapped by a field:
AttributeConverter
, or@Column(columnDefinition)
.An
AttributeConverter
works very well for basic types, but there are no built-inAttributeConverter
s, and it's a pain for the user to have to write one. And it doesn't work at all for associations.On the other hand
columnDefinition
doesn't work very well, for several reasons, including that it's not at all portable between databases, and also doesn't do any sort of type conversion at the Java level.First approach
Since very ancient times, Hibernate allowed the column type to be customized in a portable way by specifying a JDBC type code from the list given in
java.sql.Types
. Today this is usually done via the@JdbcTypeCode
annotation.The only thing about this approach that has always left me a little uncomfortable is the lack of typesafety, due to the
Types
being integers. A way to alleviate this discomfort would be to use theJDBCType
enumeration instead. So we could add:where we would be abusing
OTHER
to mean "default".So I could write:
The spec would need to define which combinations of (field type, JDBC type) an implementation is required to support, but just like with the JPQL
cast()
function, that list need not be extremely long. That is, it could, at least initially, just be basic numeric conversions and conversions tovarchar
.Second approach
Alternatively, if this abuse of
OTHER
is unacceptable, we could add a new annotation:which might anyway be a cleaner approach.
I would write:
Third approach
Alternatively, the specification could provide a set of built-in attribute converter classes, for use with
@Convert
. The problem is that to provide converters for n Java types to m JDBC types requires nm classes, which gets a bit messy.It would look like:
which is a bit more verbose than the previous options.
The advantage of this approach is that it requires no new concept in the spec. The major disadvantage is that attribute converters are disallowed for primary and foreign key columns.
The text was updated successfully, but these errors were encountered: