The connection property 'zeroDateTimeBehavior' only accepts values of the form: 'excepti...

The connection property 'zeroDateTimeBehavior' only accepts values of the form: 'exception', 'round' or 'convertToNull'. The value 'convertToNull ' is not in this set.


这个问题是解决以下问题出现的:
java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp
问题原因是因为JDBC 
url=jdbc:mysql://xxx.aliyuncs.com:3306/xxxxx?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
字符串后面因为是从网页上复制的,后面多了一个空格。
错误信息中已经提示了 zeroDateTimeBehavior 属性可以接受 'exception', 'round' or 'convertToNull'中的一个。

只是因为后面多出的空格是不可见字符,所以很难看出问题。


默认是 exception,抛出异常

round 是返回:0001-01-01 00:00:00.0

convertToNull  就是转换为 null

======================文档信息========================

版权声明:非商用自由转载-保持署名-注明出处

署名(BY) :testcs_dn(微wx笑)

文章出处:[无知人生,记录点滴](http://blog.csdn.NET/testcs_dn)

==============欢迎关注我的个人微信订阅号(微wx笑)============


这个异常通常是由于使用了错误的参数类型导致的。根据你提供的异常信息,看起来是在使用 `SqlParameter` 时出现了问题。 在使用 `ExecuteSqlRaw` 或 `ExecuteSqlInterpolated` 方法时,应该使用 `Microsoft.Data.SqlClient.SqlParameter` 类型而不是 `System.Data.SqlClient.SqlParameter` 类型。 请确保在代码中引用了正确的命名空间,并使用 `Microsoft.Data.SqlClient.SqlParameter` 类型来创建参数对象。 以下是一个修正该异常的示例代码: ```csharp using Microsoft.EntityFrameworkCore; using Microsoft.Data.SqlClient; // 确保引用了正确的命名空间 // 创建 DbContext 类 public class YourDbContext : DbContext { public YourDbContext(DbContextOptions<YourDbContext> options) : base(options) { } // DbSet 和其他属性... public DbSet<IPS_Invoice> IPS_Invoices { get; set; } } public class IPS_Invoice { public int IPS_ID { get; set; } public bool BLOCK { get; set; } public DateTime? BLOCKTIME { get; set; } } public class YourRepository { private readonly YourDbContext _dbContext; public YourRepository(YourDbContext dbContext) { _dbContext = dbContext; } public string UpdateBlockTime(IPS_Invoice model) { string message = ""; try { int affectedRows = _dbContext.Database.ExecuteSqlInterpolated($"UPDATE IPS_Invoices SET BLOCK = true, BLOCKTIME = {DateTime.Now} WHERE IPS_ID = {model.IPS_ID}"); if (affectedRows > 0) { message = "True"; } else { message = "No records updated"; } } catch (Exception e) { message = "False"; // 处理异常... } return message; } } ``` 请确保在代码中引用了正确的 `Microsoft.Data.SqlClient` 命名空间,并使用 `Microsoft.Data.SqlClient.SqlParameter` 类型来创建参数对象。这样应该可以解决该异常。 如果问题仍然存在,请提供更多相关的代码和异常堆栈信息,以便我能够更好地帮助你。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值