[问题] C# string to DateTime

楼主: Anthony53 (安东尼)   2014-02-17 17:17:30
我有一串string想转乘DateTime
假设我input:20120101
我想转成DateTime为2012-01-01存到postgret数据库
我试过很多方式
但最后转出来都会变2012/01/01 上午12:00:00
不然就是20120101 上午12:00:00
不管怎么转 都一定会出现"上午12:00:00"
我贴其中一个方式 可以帮忙看错哪边吗
谢谢
IFormatProvider culture = new System.Globalization.CultureInfo("zh-TW", true);
DateTime dddd = DateTime.ParseExact("20130101", "yyyyMMdd",culture);
我贴两个reference:
http://ppt.cc/X0Ih
http://ppt.cc/Bpzz
作者: bbcust (bbcust)   2014-02-17 17:43:00
DateTime格式 名称就说明了一定会有Time啊
作者: Ammenze (蓝天白云)   2014-02-17 17:46:00
你把数据库那个字段的格式改为文字
作者: uranusjr (←這人是超級笨蛋)   2014-02-17 17:55:00
有没有 C# 有一个型别叫 Date 的八卦
作者: Litfal (Litfal)   2014-02-17 19:21:00
概念有问题...既然懂得把字串格式化为时间,怎么不懂得把时间格式化成想要的字串?试试dddd.ToString("yyyyMMdd")
作者: mepowerlmay (用心,找对人)   2014-02-17 22:02:00
DateTime.ToShortDateString 方法 by msdn..看过了吗public static Nullable<T> ToNullable<T>(this str)研究这个比较实在一点
作者: tooto1985 ( )   2014-02-17 23:15:00
你要把储存格式跟显示格式分开来处里
作者: Montoli (Montoli)   2014-02-17 23:57:00
应该只要把PostgreSQL的字段型态设定为date就可以了http://ppt.cc/8w-W
作者: johnpage (johnpage)   2014-02-18 13:33:00
资料与显示是不同两件事
作者: ssccg (23)   2014-02-18 14:37:00
"最后转出来" 你是用什么东西去看数据库里的值?不管你前面怎么转,"最后转出来"用的会显示时间那就会有时间
作者: cacca (yayaya)   2014-02-19 19:21:00
最后转出来的为主杯

Links booklink

Contact Us: admin [ a t ] ucptt.com