在 SQL Server CE 4 中使用 GetUTCDate
考虑一个具有不可空列的 SQL Server CE 4 表:FooDate
。目标是将当前 UTC 日期时间作为默认值。
SQL Server Compact 无法识别该函数。函数名称 GetUTCDate。
函数 GetDate()
按预期工作,作为 SQL Server Compact 4 中 datetime
列的默认值。SQL
Server 是否支持 GetUTCDate()
CE 4 到底有没有?
Consider a SQL Server CE 4 table with a non-nullable column: FooDate
. The goal is to have the current UTC datetime as the default.
The function is not recognized by SQL Server Compact. Name of function GetUTCDate.
The function GetDate()
works as expected as a default to a datetime
column in SQL Server Compact 4.
Is GetUTCDate()
supported in SQL Server CE 4 at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL Server CE 支持 T-SQL 函数的有限子集。 GetUTCDate() 不是其中之一。
SQL Server CE supports a limited subset of T-SQL functions. GetUTCDate() is not one of them.