Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在数据表中添加新行时,我遇到了唯一约束。
我的唯一字段是 ID。
ID
==
美国广播公司
如何禁用数据表中的敏感大小写检查。
我在不适合我之前使用 datatable.casesensitive = false 。
在设置数据表的 PrimaryKey 属性之前使用 CaseSensitive = true ,它将区分大小写。我有同样的问题,这就是我解决它的方法。
您需要像这样重建您的唯一约束:
create unique index uk_MyTable_ID on MyTable(upper(ID));