Difficulty: Easy
Correct Answer: Methods.
Explanation:
Introduction / Context:
OLE DB is an object-based COM technology. Like other object models, it distinguishes properties (state), methods (actions), and events or notifications. Knowing this vocabulary helps developers read provider documentation correctly.
Given Data / Assumptions:
Concept / Approach:
In object models, methods are callable operations that cause the object to perform work or change state. Properties represent configuration or state that can be read/written. Collections are containers of objects. Providers supply the OLE DB interfaces; they are not an action themselves. Therefore, the correct term for actions is methods.
Step-by-Step Solution:
Verification / Alternative check:
OLE DB and COM references consistently use “methods” for callable actions (for example, IRowset::GetData).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Methods.
Discussion & Comments