Article ID: 232493 - Last Review: January 26, 2005 - Revision: 2.1 ACC2000: How to Simulate Parameters in an SQL Pass-Through QueryThis article was previously published under Q232493 Advanced: Requires expert coding, interoperability, and multiuser skills.
This article applies only to a Microsoft Access database (.mdb). On This PageSUMMARY
This article demonstrates two sample user-defined Visual Basic for
Applications functions that you can use to pass parameters to an SQL
pass-through query.
NOTE: You can see a demonstration of the technique that is used in this article in the sample file Qrysmp00.exe. For information about how to obtain this sample file, please see the following article in the Microsoft Knowledge Base: 207626
(http://support.microsoft.com/kb/207626/EN-US/
)
ACC2000: Access 2000 Sample Queries Available in Download Center
MORE INFORMATION
An SQL pass-through query does not accept dynamic parameters as do other
Microsoft Access queries based on attached ODBC tables. This is because
Microsoft Access does not process an SQL pass-through query; it sends the
literal commands (written in the syntax required by SQL Server) directly to the server for processing.
To pass parameters to an SQL pass-through query, create a Visual Basic function that builds and runs a QueryDef object using an SQL statement that concatenates the parameter criteria as literal values. Examples 1 and 2 show you how to create the function. NOTE: The sample code in this article uses Microsoft Data Access Objects. For this code to run properly, you must reference the Microsoft DAO 3.6 Object Library. To do so, click References on the Tools menu in the Visual Basic Editor, and make sure that the Microsoft DAO 3.6 Object Library check box is selected. Example 1This sample function creates a QueryDef object that uses the sp_addgroup system procedure from Microsoft SQL Server to add a new group. The new group name is passed to the function and then concatenated into the SQL statement for the QueryDef object. To create this sample function, follow these steps:
Example 2This sample Visual Basic function creates a QueryDef object that uses the sp_server_info system procedure from SQL Server to query the spt_server_info system table to display attributes about the server. The attribute's number is passed to the function and then concatenated into the SQL statement for the QueryDef object. To create this sample function, follow these steps:
REFERENCES
For more information about the syntax for the SQL property of the SQL
pass-through query, see the documentation for your ODBC database server.
For more information about pass-through queries, click Microsoft Access Help on the Help menu, type send commands to an sql database using a pass-through query in the Office Assistant or the Answer Wizard, and then click Search to view the topic.
| Article Translations
|

Back to the top
