Forums | Admin

Discussion Forums: open-discussion

Start New Thread Start New Thread
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


Thread View

Thread Author Date
Bind parameter issues using Oracle 10Daniel Berger2005-09-29 16:11
      RE: Bind parameter issues using Oracle 10Daniel Berger2005-09-29 19:54
            RE: Bind parameter issues using Oracle 10Kubo Takehiro2005-09-29 23:54
                  RE: Bind parameter issues using Oracle 10Daniel Berger2005-09-30 15:35
                        RE: Bind parameter issues using Oracle 10Daniel Berger2005-09-30 16:49

Post a followup to this message