获取服务器计算机时间的适当方法?

发布于 2024-12-11 08:45:04 字数 86 浏览 0 评论 0原文

我的程序确实在网络中运行。我设置了一台主机作为服务器,并安装了数据库系统。我的其他客户创建交易并将其保存到数据库。现在我还需要在该记录中添加服务器的日期和时间

I do have my program running in a network. I have set one main computer as server and installed database system too. My other clients create transaction and saves it to database. Now I need to add date and time of server too in that record

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

长发绾君心 2024-12-18 08:45:04

如果您的应用程序运行在服务器上,则可以通过 DateTime.Now 属性。

如果您的应用程序仅在客户端上运行,并且没有服务器端应用程序,只有数据库,则可以包含 CURRENT_TIMESTAMPGETDATE() 函数添加到您的 SQL 语句中。 (假设您正在运行 SQL Server)。

If your application is running on the server, you can get the local time through the DateTime.Now property.

If your application is only running on the client and you have no server-side application, only the database, you can include CURRENT_TIMESTAMP or the GETDATE() function to you SQL statement. (Assuming you're running SQL Server).

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