dot(。)正在从MySQL数据库中检索为©

时间:2016-02-18 16:21:42

标签: c# mysql image

我已将图像的路径存储在MYSQL表中。现在,当我尝试检索路径时,除了将.jpg的点(。)检索为©jpg之外,所有路径都被正确检索,因此出现了没有这样的文件的例外。

string fileName =Convert.ToString(dt.Rows[rowIndex]["photo"]);    //File name with Exstension and Path
        FileInfo fi = new FileInfo(fileName);
        BitmapImage img = new BitmapImage();    //BitmapImage for showing in the image control
        img.BeginInit();
        img.UriSource = new Uri(fileName);
        img.EndInit();
        imgPic.Source = img;

Screen shot of my problem window

1 个答案:

答案 0 :(得分:1)

我发现了这个问题。我实际上已将该特定列的排序规则从ascii_general_ci更改为armscii8_general_ci