为什么 JPA、Hibernate 和 jTDS 总是使用 varchar(8000) 作为字符串列?
我使用 JPA (Hibernate) 和 jTDS 作为我的 jdbc 驱动程序。每当我的实体列的数据类型为 String 时,创建的准备语句都会使用 varchar(8000) 作为其参数。例如,我已经尝试在映射中使用 @Column(length=50)
,但它似乎被忽略了。
如果我在 jTDS 连接中设置 sendStringParametersAsUnicode
,它会使用 nvarchar(4000)
代替,但从不尊重我在实体中定义的长度。这是有原因的吗?
I'm using JPA (Hibernate) and jTDS as my jdbc driver. Whenever the datatype of my entity columns are String, the created prepared statement uses varchar(8000)
as its parameter. I've already tried to use @Column(length=50)
in my mappings for example, but it seems to be ignored.
If I set sendStringParametersAsUnicode
in jTDS connection, it uses nvarchar(4000)
instead, but never respects the lentghs I define in my entities. Is there a reason for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我意识到这是一个老问题,但最近我自己也遇到了这个问题,我想我可以解释一下。
这似乎是
jtds
驱动程序有意为之。如果您查看
TdsData.java
,您将看到此代码块中发生了这种情况:I realize this is an old question, but having recently run into this myself I thought I'd shed some light.
This seems to be intentional in the
jtds
driver.If you look at
TdsData.java
, you will see this occur in this code-block: