在 C# 中更新 MS Access 表
我正在我的 Winforms 项目中使用 Microsoft Access 数据库。我正在使用 OLEDB 进行连接。我尝试更新下表:
TotalLogins
--------------------
ID AutoNumber
TokenNo Text
UserID Number
FromDate DateTime //Contains datetime of login
ToDate DateTime //Contains datetime of logout
How do I write C# code that update this table with all the required information?
I'm working with a Microsoft Access Database in my Winforms project. I'm using OLEDB to connect. I have the following table I'm trying to update:
TotalLogins
--------------------
ID AutoNumber
TokenNo Text
UserID Number
FromDate DateTime //Contains datetime of login
ToDate DateTime //Contains datetime of logout
How do I write C# code that updates this table with all the required information?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用此代码作为示例
Try this code as example