C
Chris Tacke, eMVP
Actualy your description is a very common scenario for an n-tier solution.
Apps often should not directly access the data, but instead go through a
component that has the business logic in it.
In this case, create a DLL that connects to the data and exports some
functions like GetCustomer or some such. Then your app code from both
platforms can call the same piece of code.
Apps often should not directly access the data, but instead go through a
component that has the business logic in it.
In this case, create a DLL that connects to the data and exports some
functions like GetCustomer or some such. Then your app code from both
platforms can call the same piece of code.