Ciao a tutti
Dato il seguente codice:
string sql = "INSERT INTO T (A, B, C) VALUES (@A, @B, @C)";
SqlCommand cmd = new SqlCommand(sql, conn);
cmd.Parameters.AddWithValue("@A", "a");
cmd.Parameters.AddWithValue("@B", "b");
cmd.Parameters.AddWithValue("@C", "c");
Esiste un'istruzione che ritorni
INSERT INTO T (A, B, C) VALUES ("a", "b", "c"), cioè la stringa SQL "costruita" e che sta per essere eseguita?
Grazie, g.[/b]