• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Oracle stored procedure trouble

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I am trying to call an oracle stored procedure but i get an error

java.sql.SQLException: ORA-01745: invalid host/bind variable name

when I try the executeQuery().

My code is as follows:


I unfortunately did not write the procedure or have access to it right now.

Any suggestions on a fix, or even a better description of the error?

Thanks,
Joe
 
Graeme Wilkinson
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Feeling really stupid about this but the error is in the prepare call :
con.prepareCall("call ? := notification_pkg.process_xml_redeliver(?, ?, ?)");

should be

con.prepareCall("{ call ? := notification_pkg.process_xml_redeliver(?, ?, ?) }");
 
Ranch Hand
Posts: 1143
1
Eclipse IDE Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Graeme (or Joe?),
Actually it should be:

Good Luck,
Avi.
reply
    Bookmark Topic Watch Topic
  • New Topic