将字符串转换为日期类型或时间类型

发布于 2024-11-04 22:49:32 字数 252 浏览 0 评论 0原文

我的数据库中有 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 技术交流群。

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

发布评论

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

评论(1

守望孤独 2024-11-11 22:49:32

您需要从文本框中创建一个 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 use DateTime.Parse(TextBox1.Text). Or also DateTime.ParseExact(), depending on how much control you want to retain over the parsing of the date.

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