は、私がイメージ列を持つデータベースを持っているDataGridviewでイメージを取得するには?ここ
string constring = @"Data Source=MUZAFFAR_ALI801\SQLSERVER;Initial Catalog=imageform;Integrated Security=True;";
SqlConnection condatabase = new SqlConnection(constring);
SqlCommand sc = new SqlCommand(@"SELECT id, Source, Channel, Category, Image, url, Keyword1, Keyword2, Keyword3
FROM Uploads", condatabase);
try
{
SqlDataAdapter sda = new SqlDataAdapter();
sda.SelectCommand = sc;
DataTable dt = new DataTable();
sda.Fill(dt);
BindingSource bSource = new BindingSource();
bSource.DataSource = dt;
dataGridView1.DataSource = bSource;
sda.Update(dt);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
、私のコードです。私は数値でSQLデータベースに保存されたようにdatagridviewで画像を取得したいが、私はエラーに直面した。ここで
は、エラーのスクリーンショットです:あなたはDataAdapter
を使用している直接フィル方法について
ないあなたの質問に十分な情報。どのようなエラーがありましたか?フロントエンドコードはどこですか?その画像フィールドのバイナリデータですか?ファイルパス? – Jonathan
'私はエラーに直面した'あなたは私たちがエラーを見るためにクリスタルボールを持っていると思いますか? – Eser
これは私が画像を追加する方法を知らない理由は、stackoverflowの私の最初の投稿です。 –