0

我正在尝试从 SQL 中提取数据并将其显示到 Windows 窗体上的图片框中。

编码:

// Use the customer number to obtain image from the DBFile table
Query.CommandText = "SELECT * FROM DBFile " +
    "WHERE " +
    "FileName = @FileName";

// Fill in the parameters
Query.Parameters.AddWithValue("@FileName", customerNumber + ".jpg");

// Build the DBFile data table
da = new SqlDataAdapter(Query);
cb = new SqlCommandBuilder(da);
da.Fill(DBFile);

// Dispose of SQL data
da.Dispose();
cb.Dispose();
Query.Dispose();

try
{
    byte[] bImage = new byte[0];
    bImage = (byte[])DBFile.Rows[0]["Data"];
    MemoryStream ms = new MemoryStream(bImage);
    pbLicense.Image = Image.FromStream(ms); // Error is thrown here
}
catch (Exception ex)
{
    MessageBox.Show(ex.Message);
}

我的问题是,这是否是不仅获得所需数据而且将其转换为所需结果的正确方法,如果是,我错过了什么?我查看了许多教程和指南,但在我尝试的方面似乎都相似。

4

0 回答 0