Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. int rowsAffected = 0;
  2. using (OleDbConnection connection = new OleDbConnection(Properties.Settings.Default.B3DVDkolekcijaConnectionString))
  3. {
  4. using (OleDbCommand command = new OleDbCommand(query, connection))
  5. {
  6. connection.Open();
  7. rowsAffected = command.ExecuteNonQuery();
  8. }
  9. }
  10.  
  11. return rowsAffected;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement