获取服务器计算机时间的适当方法?
我的程序确实在网络中运行。我设置了一台主机作为服务器,并安装了数据库系统。我的其他客户创建交易并将其保存到数据库。现在我还需要在该记录中添加服务器的日期和时间
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的应用程序运行在服务器上,则可以通过
DateTime.Now
属性。如果您的应用程序仅在客户端上运行,并且没有服务器端应用程序,只有数据库,则可以包含
CURRENT_TIMESTAMP
或GETDATE()
函数添加到您的 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 theGETDATE()
function to you SQL statement. (Assuming you're running SQL Server).