Hi I use VB 6.o as my front end... execute a query in Access... by the following code
sQueryName = "[Warranty Update 12 Month Rolling #2]"
adocmd.CommandT ext = sQueryName
adocmd.CommandT ype = adCmdStoredProc
adocmd.ActiveCo nnection = conAdo
adocmd.CommandT imeout = 1200
adocmd.Execute
I wanted to retrieve the record count that is affected ....
can anyone suggest me the syntax
sQueryName = "[Warranty Update 12 Month Rolling #2]"
adocmd.CommandT ext = sQueryName
adocmd.CommandT ype = adCmdStoredProc
adocmd.ActiveCo nnection = conAdo
adocmd.CommandT imeout = 1200
adocmd.Execute
I wanted to retrieve the record count that is affected ....
can anyone suggest me the syntax
Comment