如何使用C#在mysql数据库中存储图像路径

时间:2014-06-26 10:48:05

标签: c# mysql winforms

我正在开发Windows窗体以在数据库中保存图像路径,然后使用其存储在数据库中的路径检索该图像。我的代码保存路径但是斜线" /"被排除在外。所以帮助我如何正确保存图像路径。这是我的代码。

private void button3_Click(object sender, EventArgs e)
        {
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                imagePath = openFileDialog1.FileName.ToString();
                label23.Text = openFileDialog1.SafeFileName.ToString();
                Image thumbnail = Image.FromFile(openFileDialog1.FileName).GetThumbnailImage(214, 186, () => false, IntPtr.Zero);
                pictureBox1.Image = thumbnail;
                command.CommandText = "insert into student values ('imagePaht')";
                con.Open();
                command.Connection = con;
                command.ExecuteNonQuery();
                con.Close();

            }
        }

1 个答案:

答案 0 :(得分:0)

使用@,不会删除斜杠。另一种方法是将它们加倍,但这不是一个好方法。

command.CommandText = @"insert into student values ('imagePaht')";