[sql] Cambio de valores con try catch

Viewer

copydownloadembedprintName: Cambio de valores con try catch
  1. try {
  2.     List<Merchant__c> recordsToUpdate = [SELECT Id, Merchant_s_Primary_Industry__c
  3.                                          FROM Merchant__c
  4.                                          WHERE Merchant_s_Primary_Industry__c IN ('Accupuncture', 'Alternative Medicine', 'Anesthesiologist', 'ASC', 'Funeral Services', 'Gastroenterology', 'Gynecology', 'Hospital', 'Neurosurgery', 'Oncology', 'Orthopaedic Care', 'Other - Inactive Value', 'Permanent Makeup',
  5.                                          'Pharmaceuticals', 'Reconstructive Surgery', 'Remodeling', 'Roofing', 'Sexual Reassignment Surgery', 'Substance Abuse/Rehab', 'Surrogacy', 'Tattoo Removal', 'Therapy/Behavioral', 'Urology', 'Vein Treatment', 'Water Filtration')];
  6.  
  7.     FOR (Merchant__c record : recordsToUpdate) {
  8.         record.Merchant_s_Primary_Industry__c = 'Legacy';
  9.     }
  10.  
  11.     UPDATE recordsToUpdate;
  12. } catch (DmlException e) {
  13.     // Manejar la excepción DmlException
  14.     System.debug('Error en la operación DML: ' + e.getMessage());
  15. }
  16.  

Editor

You can edit this paste and save as new:


File Description
  • Cambio de valores con try catch
  • Paste Code
  • 11 Dec-2023
  • 1023 Bytes
You can Share it: