Multiple choice technology databases

Which procedure of the dbms_output supply package would you use to append text to the current line of the output buffer?

  1. a) GET.

  2. b) GET_LINE.

  3. c) PUT_TEXT_LINE.

  4. d) PUT_LINE.

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

DBMS_OUTPUT.PUT_LINE appends text followed by a newline to the output buffer. PUT appends text without newline. GET and GET_LINE retrieve text. PUT_TEXT_LINE is not a standard procedure - the correct name is PUT_LINE.