无法从 MySQL 中的数据在 DataGridView 中显示 MonthName
询问:
SELECT ItemName, Description, PurchaseDate, MONTHNAME(PurchaseDate) AS PurchaseMonth FROM tblItems
错误:
System.ArguementException:参数无效
显示月份编号,使用MONTH(PurchaseDate)
效果很好,但是当我尝试显示月份名称时,出现数据网格错误。当我在 MySQL 中运行 SQL 时,它会返回预期的结果。
MONTHNAME(PurchaseDate)
当我添加 DataError 事件时,它只会在应该在的字段中显示一个红色的感叹号。