是否可以在一个函数中多次连接到数据库?
如果SqlCommand
不填表。
一段代码:
public void region_wypelnij()
{
string Region = RegionTextBox.Text;
string Kraj = ((DataRowView)KrajComboBox.SelectedItem).Row.ItemArray[0].ToString();
String tresc = "Data source=ADAM_LAPTOP; Integrated Security=true; Database=tmargacz";
SqlConnection conn = new SqlConnection(tresc);
SqlCommand polecenie = new SqlCommand("Select IdRegionu From Region Where Nazwa='" + Region + "'", conn);
SqlDataAdapter adapter = new SqlDataAdapter(polecenie);
DataSet ds = new DataSet(); //reprezentują całą bazę danych wraz z relacjami pomiędzy tabelami
adapter.Fill(ds, "Region");
int licznik = ds.Tables["Region"].Rows.Count;
MessageBox.Show(licznik.ToString());
if (licznik > 0)
{
string index = ds.Tables["Region"].Rows[0]["IdRegionu"].ToString();
int indeks = Convert.ToInt32(index);
String tresc2 = "Data source=ADAM_LAPTOP; Integrated Security=true; Database=tmargacz";
SqlConnection conn2 = new SqlConnection(tresc2);
SqlCommand polecenie2 = new SqlCommand("INSERT INTO Region VALUES ((SELECT Nazwa FROM Region WHERE IdRegionu ='" + indeks + "'), (SELECT IdKraju FROM Kraj WHERE Nazwa ='" + Kraj + "'))", conn2);
SqlDataAdapter adapter2 = new SqlDataAdapter(polecenie2);
DataSet ds2 = new DataSet(); //reprezentują całą bazę danych wraz z relacjami pomiędzy tabelami
adapter.Fill(ds2, "Region");
}
else
{
String tresc2 = "Data source=ADAM_LAPTOP; Integrated Security=true; Database=tmargacz";
SqlConnection conn2 = new SqlConnection(tresc2);
SqlCommand polecenie2 = new SqlCommand("INSERT INTO Region VALUES ('" + Region + "', (SELECT IdKraju FROM Kraj WHERE Nazwa ='" + Kraj + "'))", conn2);
SqlDataAdapter adapter2 = new SqlDataAdapter(polecenie2);
DataSet ds2 = new DataSet(); //reprezentują całą bazę danych wraz z relacjami pomiędzy tabelami
adapter.Fill(ds2, "Region");
}
}