thanks Peter A. Bromberg, Ph.D. Write BLOB データ private void setBLOBData() { // データの読み込み(using System.IO;を追加) FileStream fs = new FileStream(@"E:\sampleIn.jpg", FileMode.OpenOrCreate, FileAccess.Read); byte[] MyData= new byte[fs.Length]; fs.Read(MyData, 0, System.Convert.ToInt32(fs.Length)); fs.Close(); // データベースの接続 IDbConnection conn = new SQLiteConnection(); string logPath = @"E:\" + @"log.db"; c