I have a database that works with mdb and I am building a new application and I need that for the time been to work with mdb and in the future I will transfer it to SQL. The problem is that i want to build something like a store-procedure and it can’t be done in visual studio with mdb (I am working with xsd-file).
Is there a way to make something like stored procedure and to connect it to mdb?
for example: I want to have a stored procedure that has 4 parameters and to be able to check then in the “where”.
I didn’t see any way of doing that in the xsd-file
Thank`s
Best you can do is build a query with what would be the content of the proposed sp.
Some sort of abstraction, say a Factory pattern based on what sort of backend in use is probaly as good as it gets at the moment.