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

SQL Server データベースから画像を取得する

    これは SQL Server の例です

            connection.Open();
            SqlCommand command1 = new SqlCommand("select imgfile from myimages where [email protected]", connection);
            SqlParameter myparam = command1.Parameters.Add("@param", SqlDbType.NVarChar, 30);
            myparam.Value = txtimgname.Text;
            byte[] img = (byte[])command1.ExecuteScalar();
            MemoryStream str = new MemoryStream();
            str.Write(img, 0, img.Length);
            Bitmap bit = new Bitmap(str);
            connection.Close();
    

    こちらをご覧くださいhttp://www.akadia.com/services/dotnet_read_write_blob.html



    1. cmdでpgslバックアップを復元するためのpsqlエラー

    2. Android-GCMを使用してクライアントのsqliteデータベースを更新します

    3. MySQL MATCHは2文字では機能しませんか?

    4. ランダムな行を選択するための最良の方法PostgreSQL