| Message: 5240 |
 |
BY: Daniel Berger (djberg96) DATE: 2005-09-29 16:11 SUBJECT: Bind parameter issues using Oracle 10 Hi,
It looks like bind parameters aren't working properly when used against an Oracle 10 database. For example, if I do this:
select *
from foo
where bar = 'hello'
and baz = 5
Everthing works fine
But if I do this:
select *
from foo
where bar = :1
and baz = :2
And later I do sth.execute('hello', 5), it just hangs.
This doesn't seem to happen against Oracle 9i databases and earlier.
Any ideas?
Thanks.
Dan | |