Details
Description
In AdoNetAppender.cs at line 561 :
param.FormatValue(dbCmd, e);
In SQLite we need to call the Prepare function before FormatValue :
param.Prepare(dbCmd);
If Prepare not called, then SQLite generate an ArgumentOutOfRangeException because the parameters is not defined
Attachments
Attachments
Issue Links
- duplicates
-
LOG4NET-493 Log4net 1.2.14/ADO.NET appender throws exception when starting (1.2.13 with same config works fine)
- Resolved