Reputation: 19735
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 textbox? I tried ? but it did not work.
Upvotes: 0
Views: 679
Reputation: 1851
I believe Oracle PSQL expects parameters of a query to use a colon (":") instead of "@". So, try :somevar.
Upvotes: 2