I'm executing my StoredProcedure like this:
Dim qdef As DAO.QueryDef
Set qdef = CurrentDb.CreateQueryDef("")
qdef.Connect = CurrentDb.TableDefs("tblE").Connect
qdef.sql = "EXEC StoredProc @Param1 = " & Me.Param1
qdef.Execute
Now what I'd like to do with the results (since this wouldn't work)..-
Is to Insert them into table: TempTable
.
Structure of TempTable matches with the return values of the stored procedure.
How could I do something like: 'INSERT INTO TempTable (EXEC StoredProc)'
with a LOCAL table?