0

このボタンの画像に、データベースに保存されている画像 (画像パス) を使用したい...

        private void button15_Click(object sender, EventArgs e)
        {
            string a = button11.Text;
            string connString = "Server=Localhost;Database=test;Uid=*****;password=*****;";
            MySqlConnection conn = new MySqlConnection(connString);
            MySqlCommand command = conn.CreateCommand();
            command.CommandText = ("Select link from testtable where ID=" + a);

            try
            {
                conn.Open();
            }
            catch (Exception ex)
            {
                //button11.Image = ex.ToString();
            }

            MySqlDataReader reader = command.ExecuteReader();
            while (reader.Read())
            {
                button11.Image = reader["path"].ToString();                    
            }
        } 

エラーがあると思いますが"reader["path"].ToString();"、使用する構文がわかりません。

4

3 に答える 3

0

これを試してください:(回答ボックスに書かれた権利、タイプミスがあるかもしれません!)

    private void button15_Click(object sender, EventArgs e)
    {
        string a = button11.Text;
        string imagePath;
        string connString = "Server=Localhost;Database=test;Uid=root;password=root;";
        using(MySqlConnection conn = new MySqlConnection(connString))
        using(MySqlCommand command = conn.CreateCommand())
        {
            command.CommandText = "Select link from testtable where ID=@id";
            command.Parameters.AddWithValue("@id", int.Parse(a));

            try
            {
                conn.Open();
                imagePath= (string)command.ExecuteScalar();
            }
            catch (Exception ex)
            {
            //button11.Image = ex.ToString();
            }

            button11.Image = Image.FromFile(imagePath);
        }
    } 
于 2013-02-16T16:35:27.790 に答える
0

ディスク上のイメージ ファイルへのパスをpath列に格納した場合は、イメージをロードする必要があります。

    string path = (string)reader["path"];
    button11.Image = Image.FromFile(path);

補足: ユーザー入力からデータベース クエリに値を直接渡さないでください。SQL インジェクション攻撃に対して脆弱です。代わりにパラメーターを使用します。

command.CommandText = "Select link from testtable where ID=@id";
command.Parameters.AddWithValue("@id", int.Parse(a));
于 2013-02-16T16:30:55.330 に答える
0

これを試して:

        while (reader.Read())
        {
            string path = reader.GetString(0);
            button11.Image = Image.FromFile(path);                    
        }
于 2013-02-16T16:34:22.077 に答える