将字符串转换为日期类型或时间类型
我的数据库中有 2 列。一个是 Date 类型,另一个是 Time(7) 类型。
我正在通过前端更新数据库中的值。对于我正在做的转换:
(columnName of type Date) Start_Date = TextBox1.Text;
(columnName of type Time) Start_Time = TextBox2.Text;
它给了我从字符串到时间的转换错误...我该如何转换它?
I have 2 columns in the database. One is of type Date and another is of type Time(7).
I am updating the values in the database through front end. For conversion I am doing:
(columnName of type Date) Start_Date = TextBox1.Text;
(columnName of type Time) Start_Time = TextBox2.Text;
And its giving me an conversion error from string to time... How can I convert it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要从文本框中创建一个
DateTime
对象并将其分配给列。您可以使用DateTime.Parse(TextBox1.Text)
< /a>.或者DateTime.ParseExact()
,取决于您想要对日期解析保留多少控制权。You need to create a
DateTime
object from your textboxes and assign that to the columns. You could useDateTime.Parse(TextBox1.Text)
. Or alsoDateTime.ParseExact()
, depending on how much control you want to retain over the parsing of the date.