Does anyone have any experience coverting MS Access VBA procedures (Sub's, Functions) into SQL Server Stored procedures??
How does VBA translate into Transact SQL? Is it fairly congruent, or are the differences huge?
Thank you for your help.
The differences are fairly huge. T-SQL is not as rich in built-in functions as VB.
More importantly, the difference is in approach. Whereas in VB you might tend to think of working on rows individually, in T-SQL the goal is to act on sets of data. Robert Bradley
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.