0
SQL 데이터베이스에 쓸모없는 호출을 피하기 위해 추가적인 로직이 필요한지 또는 SqlDataAdapter.Update()
이 올바른 일을하는지 알아 내려고합니다. 열 값을 이미 변경 한 경우 UPDATE가 호출됩니까?
SqlConnection sqlconn = new SqlConnection(connectionString);
sqlconn.Open();
SqlDataAdapter da = new SqlDataAdapter(selectString, sqlconn);
SqlDataTable table = new SqlDataTable();
da.Fill(table);
new SqlCommandBuilder(da);
table.Rows[0][columnName] = 5; // Existing value is already 5
da.Update(table);
윌 .Update()
UPDATE
해당 행에 대한 호출하거나, 행에 대한 값이 실제로 변경되지 않을 것이기 때문에 :이 코드가있는 경우?