• 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

how to create a oracle conn pool......

 
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi everyone,
my question is this that...how to create a oracle connection pool when oracle is installed on a seperate machine.
before this i have installed weblogic and oracle on the same machine therefore its very easy....now what to do as oracle 8i is on second computer
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
They are created in the same way.
If you are using a type-4 JDBC driver then just change the hostname of the database to connect to.
If you are using a type-2 JDBC driver then you will need the Oracle OCI client installed and you will need to configure the database connection in tnsnames.ora (use Net8 Assistant). Once this is done then just add the Connection Pool in WebLogic like you did before.
reply
    Bookmark Topic Watch Topic
  • New Topic