sql >> データベース >  >> RDS >> Mysql

C#でデータベースから画像を取得する方法

    このコードは便利かもしれません。試しました。

    byte[] imagedata = (byte [])dataGridView1[4, dataGridView1.SelectedRows[0].Index].Value;
                using (System.IO.MemoryStream ms = new System.IO.MemoryStream(imagedata, 0, imagedata.Length))
                {
                    ms.Write(imagedata, 0, imagedata.Length);
                    //Set image variable value using memory stream.
                    image = Image.FromStream(ms, true );
                }
    


    1. PLSQLのREALデータ型

    2. MySQLは日時をunixtimeに変換しますか?

    3. OracleのNLS_UPPER()関数

    4. SQL Server 2008のEntityFramework(LINQを使用)でのオフセット/フェッチベースのページング(実装)