小日期时间的 OleDBDataType
我有一个带有smalldatetime 数据类型参数的sp。我在 C# 代码中通过 OleDbConnection 调用我的 SP。使用 OleDbConnection 是一项要求,因此不要回答将我的连接类型更改为 SqlConection。
现在我的问题是我无法将smalldatetime类型的参数传递给sp,因为OleDbDataType没有smalldatetime数据类型。最好使用什么数据类型?或有什么建议吗?除了将我的连接类型更改为 SqlConnection 之外。
I have an sp with a parameter of smalldatetime datatype. I'm calling my SP through OleDbConnection in my C# code. using OleDbConnection is a requirement so don't answer to change my connection type to SqlConection.
Now my problem is I cannot pass the parameter of type smalldatetime to the sp because OleDbDataType don't have smalldatetime datatype. What's the best DataType to use? or any suggestions? Except changing my connection type to SqlConnection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它将解析为 System.DateTime,但是当您将数据存储在数据库中时,不会存储毫秒数。
it will resolve to the System.DateTime but when you store the data in the database millisconds will not be stored.