Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

Rufen Sie Bilder aus der SQL-Server-Datenbank ab

dies ist ein Beispiel von 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();

siehe hier http://www.akadia.com/services/dotnet_read_write_blob.html