在 Derby 中自动将 VARCHAR 截断为特定长度
如何使用 SQL 在 Derby 中自动将 VARCHAR 截断为表字段长度?
具体来说:
CREATE TABLE A ( B VARCHAR(2) );
INSERT INTO A B VALUES ('1234');
会抛出 SQLException:
A truncation error was encountered trying to shrink VARCHAR '123' to length 2.
有没有一种简单的方法来抑制此异常?
How can I truncate a VARCHAR to the table field length AUTOMATICALLY in Derby using SQL?
To be specific:
CREATE TABLE A ( B VARCHAR(2) );
INSERT INTO A B VALUES ('1234');
would throw a SQLException:
A truncation error was encountered trying to shrink VARCHAR '123' to length 2.
Is there a easy way to suppress this exception?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不,你应该在检查元数据后将其砍掉。 或者,如果您不想每次都检查元数据,那么您必须保持代码和数据库同步。 但这没什么大不了的,这是验证者的常见做法。
No. You should chop it off after checking the meta-data. Or if you don't wanna check the meta-data everytime, then you must keep both your code and database in sync. But thats not a big deal, its a usual practice in validators.
您可以在插入之前修剪 varchar。
在插入脚本/过程中使用修剪功能。
我不熟悉Derby,但在MSSQL中我做了完全相同的事情,使用trim来避免截断错误(仅在我不需要完整数据的情况下),最好增加varchar的长度
You can trim the varchar before inserting it.
use the trim function in your insert script/procedure.
I'm not familiar with Derby, but in MSSQL I do exactly the same thing, using trim to avoid truncation error (only where I don't need the full data), it's much more preferable to increase the length of the varchar
您可以使用
SUBSTR
:如果您使用准备好的语句:
You can use
SUBSTR
:In case you use prepared statements: