Is it true that you cannot use bind variables with Oracle?

Is it true that you cannot use bind variables with Oracle?

An answer would be really appreciated,

Thanks,

Chris

On 4/19/06, Chris R. [email protected] wrote:

Is it true that you cannot use bind variables with Oracle?

An answer would be really appreciated,

Thanks,

Chris

Works fine for me.
args = {:blah => ‘example’, :foo => ‘fishstick’}
Model.find :all, :conditions => [“something = :blah and other_thing =
:foo”, args]

But is this really using Oracle bind variables?