You are developing a PHP application that processes financial transactions. Which PDO feature would be best suited to ensure that multiple database operations are processed as a single unit?

  • Error Handling
  • Prepared Statements
  • Transactions
  • Data Fetching
To ensure that multiple database operations are processed as a single unit in a financial application, you should use transactions. This ensures that all operations succeed or fail together, maintaining data integrity.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *