使用C# 轉換MySQL 的日期時間
問題:
問題:如何轉換日期時間C中的物件轉換為MySQL 資料庫接受的格式,特別是'1976-04-09 22:10:00' 格式?
答案:有幾種在 C# 轉換 MySQL 的 DateTime 物件的方法。
使用 ISO 8601 格式:<code class="c#">string formatForMySql = dateValue.ToString("yyyy-MM-dd HH:mm:ss");</code>
這將產生格式為「1976-04-12 22:10:00」的字串。
使用通用可排序日期時間格式:<code class="c#">// Just to shorten the code var isoDateTimeFormat = CultureInfo.InvariantCulture.DateTimeFormat; // "1976-04-12T22:10:00" dateValue.ToString(isoDateTimeFormat.SortableDateTimePattern); // "1976-04-12 22:10:00Z" dateValue.ToString(isoDateTimeFormat.UniversalSortableDateTimePattern)</code>
您也可以使用DateTimeFormat 類別的UniversalSortableDateTimePattern 屬性將DateTime 物件轉換為通用可排序日期時間格式,這也被排序日期時間格式MySQL 接受。例如:
使用自訂格式:<code class="c#">string customFormat = "dd-MMM-yyyy HH:mm"; dateValue.ToString(customFormat);</code>
以上是如何將 C# DateTime 物件轉換為 MySQL 相容格式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!