包含单个类型列的简单 MySQL 表timestamp
。
OdbcCommand command = new OdbcCommand("INSERT INTO `mytable` VALUES (?)", DbConnection);
command.Parameters.Add("", OdbcType.Timestamp).Value = DateTime.Now;
OdbcDataReader reader = command.ExecuteReader();
InvalidCastException:无法将参数从 DateTime 转换为 Byte[]
错误已被翻译,但你明白了。如何正确插入?
仅供参考:我还尝试使用此处.ToString(""yyyy-MM-dd HH:mm:ss"")
找到的函数将格式化的 DateTime 字符串 () 转换为字节数组。它插入很好,但结果是.0000-00-00 00:00:00