sqlce 中的 SQL Server 时间戳相当于什么?
我在 SQL Server 中有一些带有时间戳的数据,我想将该值存储在 sqlce 中,而不需要比较这两个值。
sqlce 中的 SQL Server 时间戳相当于什么?
I have some data with a timestamp in SQL Server, I would like to store that value in sqlce with out getting fancy to compare the two values.
What is the SQL Server timestamp equivalent in sqlce?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
时间戳来自 MS 文档
该值在创建它的数据库之外没有任何意义。因此我不知道如何转换它。
在非 Sybase/ SQL Server 数据库中,我将使用版本号或上次更新列
Timestamp is from MS Docs
This value makes no sense outside the database it was created in. Thus I don't see how it can be converted.
In a non Sybase/ SQL Server database I would use a version number or last updated column
从 Sql Compact 3.5 开始,支持时间戳,根据 MSDN :
AS of Sql Compact 3.5, there is support for timestamps, per MSDN:
好吧,时间戳是自动生成的 varbinary。因此,要复制时间戳,您需要一个 varbinary 字段。
Ok the timestamp is a varbinary that auto generates. So to copy a time stamp you need a varbinary field.