For my application I\'m trying to store a byte array in my SQLite application, I\'m filling my SQLite database this way:
public bool InsertMessage() {
Use an overload of SQLiteParameter that takes the DBType parameter:
DBType
var dataParameter = new SQLiteParameter("Data", DbType.Binary) { Value = data }; pars.Add(dataParameter);