konto usunięte
Temat: Prosze o pomoc - ListBox ADO.NET
Chcę polączyć program z bazą danych, tak aby w kontrolce ListBox byly wyswietlane wszystkie Nazwiska z kolumny wierzyciel. Niestety wszelkie moje próby zakończyły się fiaskiem . Bardzo proszę o pomoc.using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.Sql;
using System.Data.SqlClient;
namespace ProgressProgram
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void listBox1_SelectedIndexChanged_1(object sender, EventArgs e)
{
string sql = "Select Naziwsko From Wierzyciel";
string connstr = "server = OFELIA-F600D675; database =Progress.mdf; Trusted_Connection = yes ";
SqlDataAdapter da = new SqlDataAdapter(sql, connstr);
DataSet ds = new DataSet();
da.Fill(ds,"Wierzyciel");
DataTable dt = ds.Tables["Wierzyciel"];
for (int i = 0; i < dt.Rows.Count; i++)
{
DataRow row = dt.Rows[i];
listBox1.Items.Add(row["Nazwisko"]);
}
}
}
}