2
我正在使用SSIS,我需要轉換日期。 如何將字符串格式的日期(例如14/09/1980)轉換爲VB.NET中的日期格式?在Visual Basic中表示爲字符串日期的變換日期
我想日期時間格式插入到SQL數據庫中。
我正在使用SSIS,我需要轉換日期。 如何將字符串格式的日期(例如14/09/1980)轉換爲VB.NET中的日期格式?在Visual Basic中表示爲字符串日期的變換日期
我想日期時間格式插入到SQL數據庫中。
在VB.NET:
' Assume the current culture is en-US.
' The date is Feburary 16, 1992, 12 hours, 15 minutes and 12 seconds.
Dim myDateTimeValue As String = "2/16/1992 12:15:12"
Dim myDateTime As DateTime = DateTime.Parse(myDateTimeValue)
' Reverse month and day to conform to a different culture.
' The date is Feburary 16, 1992, 12 hours, 15 minutes and 12 seconds.
Dim cultureGB = New CultureInfo("en-GB", True)
Dim myDateTimeValue As String = "16/2/1992 12:15:12"
Dim myDateTime As DateTime = DateTime.Parse(myDateTimeValue, cultureGB)
' Dsiplay the date in DD/MM/YYYY format
Debug.Print Format(myDateTime ,"dd/MM/yyyy")
參考:http://msdn.microsoft.com/en-us/library/1k1skd40(VS.80).aspx
在VB6:
dim dt as date
dim s as string
s="10/09/2009"
dt = cdate(s)
謝謝!如果我的日期是歐洲格式? dd/mm/aaaa – simone 2009-11-20 16:11:13
但是,如果我嘗試打印myDateTime是美國格式...我怎樣才能打印它(並插入數據庫)在歐洲格式?謝謝 – simone 2009-11-20 16:27:44
爲您添加了詳細信息 – Martin 2009-11-20 17:12:59