SqlConnection con2 = neues SqlConnection (connStr);
SqlCommand SQLCmd2 = neues SqlCommand („SPAddKW“, con2);
SQLCmd2.CommandType = System.Data.CommandType.StoredProcedure;
SQLCmd2.Parameters.AddWithValue („@AWGID“, (Reihe [„AWGID“]));
SQLCmd2.Connection.Open ();
SQLCmd2.ExecuteNonQuery ();
// etwas Ähnliches, zum der vor kurzem Einfügetaste zu speichern
// aber dieses arbeitet nicht
int NewID;
NewID = SQLCmd2.Execute („AUSERWÄHLTES @@IDENTITY“);
SQLCmd2.Connection.Dispose ();
|