I did the upsizing of access database to sql server. My question is, do I have to change all my datasources in webpages manually or is there any way to do that without much effort.
Edit: The queries I have uses user input I mean @WhichUser and sql server throwing error for those asking me name the scalar variables. Normally @ symbol works in sql server but not in mine. Is this because I am using an express edition or is there anything else that I need to add to the query. Thanks!
I found that I named Control Parameter names same as column names while I used Which infront of every input parameter like
@WhichUserso was solved by addingWhichUseras name to the control parameter.