sqlce 中的 SQL Server 时间戳相当于什么?

发布于 2024-08-20 09:49:20 字数 101 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

只是在用心讲痛 2024-08-27 09:49:21

时间戳来自 MS 文档

时间戳是一种公开自动生成的二进制数的数据类型,保证在数据库中是唯一的。时间戳通常用作版本标记表行的机制。存储大小为8字节。

该值在创建它的数据库之外没有任何意义。因此我不知道如何转换它。

在非 Sybase/ SQL Server 数据库中,我将使用版本号或上次更新列

Timestamp is from MS Docs

timestamp is a data type that exposes automatically generated binary numbers, which are guaranteed to be unique within a database. timestamp is used typically as a mechanism for version-stamping table rows. The storage size is 8 bytes.

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

记忆で 2024-08-27 09:49:21

从 Sql Compact 3.5 开始,支持时间戳,根据 MSDN

SQL Server Compact 实现了
时间戳(行版本)数据类型。这
rowversion 是一种公开的数据类型
自动生成的二进制文件
数,保证是
在数据库中是唯一的。它被用来
通常作为一种机制
版本标记表行。

AS of Sql Compact 3.5, there is support for timestamps, per MSDN:

SQL Server Compact implements the
timestamp (rowversion) data type. The
rowversion is a data type that exposes
automatically generated binary
numbers, which are guaranteed to be
unique in a database. It is used
typically as a mechanism for
version-stamping table rows.

掌心的温暖 2024-08-27 09:49:21

好吧,时间戳是自动生成的 varbinary。因此,要复制时间戳,您需要一个 varbinary 字段。

Ok the timestamp is a varbinary that auto generates. So to copy a time stamp you need a varbinary field.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文