A
andyj
Hi All,
I've been trying to utilise SQL Server stored procedures from an Acces
database for while now. So far I use the following in a pass throug
query, which works great:
<vbcode>
'This displays all visitors based on two date parameters
EXEC visitorLog @dtFrom = [2/10/04 08:00:00 AM], @dtTo = [3/10/0
6:00:00 PM]
</vbcode>
This is OK if my parameters are static, but being parameters, they ar
not. How do I send the EXEC command to SQL Server from VBA code? Is
case of using an ADO connection and command object? If so, I guess
have a bit of learning to do
Thanks for reading! Hope any responses will be of use to others
And
I've been trying to utilise SQL Server stored procedures from an Acces
database for while now. So far I use the following in a pass throug
query, which works great:
<vbcode>
'This displays all visitors based on two date parameters
EXEC visitorLog @dtFrom = [2/10/04 08:00:00 AM], @dtTo = [3/10/0
6:00:00 PM]
</vbcode>
This is OK if my parameters are static, but being parameters, they ar
not. How do I send the EXEC command to SQL Server from VBA code? Is
case of using an ADO connection and command object? If so, I guess
have a bit of learning to do
Thanks for reading! Hope any responses will be of use to others
And