Multiple choice technology

What is difference between JDBC QUERY Palette and JDBC Update palette

  1. JDBC query used for Select statements, JDBC Update palette used for Altering table

  2. Both are same

  3. None of the above

  4. BW doesnot support JDBC related queries

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

JDBC Query palette executes SELECT statements for data retrieval, while JDBC Update palette handles data modification operations including INSERT, UPDATE, DELETE, and DDL statements. This separation follows standard database practice of separating read and write operations.