Difficulty: Medium
Correct Answer: Browse possible connections and data sources only.
Explanation:
Introduction / Context:
Beyond the core ODBC API, Level 1 and Level 2 add optional capabilities that enhance portability and developer ergonomics. Understanding which tier introduces which feature helps teams set realistic cross-platform expectations and decide which functions to rely upon.
Given Data / Assumptions:
Concept / Approach:
ODBC Level 1 extends the core with functionality such as enumerating or browsing available drivers and data sources, enabling applications to discover connection options at runtime. Features like scrollable cursors are generally provided in Level 2, not Level 1. Driver-specific connection mechanisms exist, but the question asks about standard Level 1 features rather than vendor-specific extensions.
Step-by-Step Solution:
Verification / Alternative check:
Historical ODBC documentation and summaries categorize discovery/catalog helpers under Level 1, with enhanced cursor navigation and positioned updates commonly under Level 2.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Browse possible connections and data sources only.
Discussion & Comments