I want to store time 11:22:33 in table, but the time is stored like this 112233. How to insert :
between the string
String text = "txtucrtime.Text,HH:MM:SS";
var split = Regex.Split(text, @"(?<=[:::])");
字符串文本 = hrs + ":" + mins + ":"secs;
试试这些谢谢
看到这个问题:Best way to store time (hh:mm) in a database
假设您要存储一天中的时间,请将其存储为表示您想要的最小精度的整数。如果要以秒为单位存储时间:
hours * 60 * 60
+ minutes * 60
+ seconds
如果要存储到毫秒,在添加它们之前将每个值乘以 1000,然后还要添加时间值的毫秒部分。