How would ria services do this kind of thing?
using (SqlConnection connection = new SqlConnection(connectionString))
{
string TSQL="update products set price=price*1.03 where category='computer books'";
SqlCommand command = new SqlCommand(TSQL, connection);
command.Connection.Open();
command.ExecuteNonQuery();
}
Thanks, Mark