使用 ESE 设置标有 JET_bitColumnAutoincrement 的值
我在 ESE 中创建了一个列,并将 grbit 设置为 JET_bitColumnAutoincrement - 在正常使用中,这就是我想要的,因为该值被数据库设置为唯一的值,
但是我的数据库操作方式很少需要我直接设置值 - 我 100% 确定我添加的 ID 尚未使用 - 这是重建类型操作,这不是正常情况,
这可能吗?有没有一种方法既可以自动增量,又可以自行设置?
I've created a column in ESE with the grbit set to JET_bitColumnAutoincrement - in normal usage this is what I want, for the value to be set to something unique by the database
however the way my database operates there are rare times when I need to set the value directly - I am 100% certain the ID I'm adding is not already in use - this is a rebuild type operation, it's not the normal case
is this possible? is there a way to both be autoincrement while keeping the ability to set it on my own?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法直接设置该值。 Esent 必须改变自动增量值的实现方式来支持这一点。
You cannot set the value directly. Esent would have to change the way autoincrement values are implemented to support that.