I am trying to use the vs2008 query builder to create a query with a parameter.
I know that in sql server it would work with:
select col1,col2
from tbl
where col3=@myParam
How would it be typed in oracle or is it pl/sql?
I get the problem in the @myParam part.
Oracle
SQL parametersare specified using:You will have to be careful when specifying this as an
OracleParameterthough, as some libraries miss off the:, and some require it to bind correctly.