I would like to know if it's possible to create a StoredProcedure
to Insert
data in an Acces database. I've tried a couple of thing but nothing so far seem to do the trick.
Thanks
I would like to know if it's possible to create a StoredProcedure
to Insert
data in an Acces database. I've tried a couple of thing but nothing so far seem to do the trick.
Thanks
I know it is possible to create a Stored Procedure
directly in access but it isn't pretty to do.
Your best options from here would be to :
Stored Procedured
using a function. I found a tutorial here. But I haven't tried this approach.SQLServer
Stored Procedure
and Import it in Acess. Try this link if you like this approach. Named Macros
.Hope this helps.
It depends on which version of MS Access. Access 2010 has both stored procedures, and also has table triggers.
For access 2010, you open up the table (non design view), and then choose the table tab. You see options there to create store procedures and table triggers.
See the answer here:
Sure. Access 2010 supports all sorts of cool stuff like stored procs and triggers. (EDIT - See @bluefeets answer for more on that). However, if you're using anything less than 2010, you're going to have to write a custom function to get the results you're looking for.