我正在使用MySQL,我将图像存储为varchar
在数据库中,如何显示这些图像?任何帮助表示赞赏。
我的代码:
public static DataTable GetAllMydetails()
{
string connString = "Server=localhost;database=test;uid=root;";
string query = "SELECT `Mydetails`.`Image`";
MySqlDataAdapter ma = new MySqlDataAdapter(query, connString);
DataSet DS = new DataSet();
ma.Fill(DS);
return DS.Tables[0];
}
protected void Page_Load(object sender, EventArgs e)
{
// I want to display image here on page load...//
}
答案 0 :(得分:0)
如何将该图像存储在varchar中?是指您存储图像名称还是转换为字节然后存储?
因为我们无法在不使用图像数据类型的情况下直接存储图像。
那么请你简短一点吗?