1. 1.
    0
    şimdi

    private void button1_Click(object sender, EventArgs e)
    {
    ArrayList diziListe = new ArrayList();
    int[] dizi = new int[5] { 1, 2, 3, 4, 5 };diziListe.Add(dizi[2]);
    diziListe.Add(12);
    diziListe.Add("stok");
    this. Text = diziListe[0].ToString();
    this. Text = diziListe[1].ToString();
    this. Text = diziListe[2];
    }

    diye dizilerimi oluşturdum herşey yolunda. sql'e bağlanıp veri çekmek istedim, northwind yerinde ama

    SqlConnection sqlConn =new SqlConnection();
    sqlConn. ConnectionString = "server=.;user=sa;pwd=a;database=Northwind;";

    giriyorum northwind görmüyor
    ···
   tümünü göster