By Late Binding Query, what i meant was a Stateless Query
Example:
A query to get all failed cases in the last two rounds of a simple game:
When I define this query, the user does not state which two rounds. When the query is executed, the query engine determines the last two rounds and binds the appropriate database objects and gives the result.
----- Douglas J. Steele wrote: -----
To be honest, I've never heard "late binding" used in conjunction with
queries.
Late Binding is a technique used in VB (and VBA) code. Rather than setting a
reference to a particular library (Early Binding), you use CreateObject to
bind to the library.
--
Doug Steele, Microsoft Access MVP
(No private e-mails, please)
viswanatha krishnan said:
I am doing a project for a reputed company. One of the requirement is to
program a stateless or a late binding query.