Multiple choice technology databases

SQL has facility for programmed handling of errors that arise during the manipulation of data.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

SQL itself does not have procedural error handling capabilities; instead, procedural extensions like PL/SQL, T-SQL, or host programming languages are used to handle runtime errors during data manipulation.

AI explanation

To answer this question, we need to understand the concept of error handling in SQL.

Option A) True - This option is incorrect. SQL does have facilities for error handling, such as the use of try-catch blocks or error handling functions like @@ERROR or TRY...CATCH. These features allow programmers to handle errors that may occur during data manipulation operations.

Option B) False - This option is correct. The statement is false because SQL does have facilities for handling errors during data manipulation.

The correct answer is B) False.