I am using a dataset and have build my tableAdapter in VWD. In SQL Server you can use an @somevar to be the parameter. But what do you put in Oracle to make it look for a parameter so that I can later bind it to a t开发者_运维知识库extbox? I tried ? but it did not work.
I believe Oracle PSQL expects parameters of a query to use a colon (":") instead of "@". So, try :somevar.
精彩评论