Microsoft
Software
Hardware
Network
Question : Access DoCmd.runSQL running a SQLServer stored procedure
I am using an Access front end to a SQLServer database. Some VBA uses DoCmd.runSQL to run stored procedures in the database. What is the best way to capture the return from the stored procedure?
Answer : Access DoCmd.runSQL running a SQLServer stored procedure
What is returned from the Stored Procedure? If it's a Recordset, you can just do this:
Dim rst As DAO.Recordset
Set rst = Currentdb.OpenRecordset(Yo
urQueryNam
e)
If it's an Output param, you're probably better off using an ADODB.Command object.
Random Solutions
Detect if crystal reports runtime files is installed
Public folder migration sbs2008
make sys.database_role_members meaningful
Sort union query on extra field
How do I implement Outlook Anywhere in Exchange 2007?
Mysql slow on Windows 2008 Server
This is in AIX 5.3 ..how to make aio and posix_aio available without a system reboot
Cisco PIX and ARP issue
thanks in advance
Re size Image in memory from Byte()