• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Connection Pool and Data Source

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

Like to understand more about the relationship betwee connection pool and datasource in Weblogic 8.1.

Can I configure connection pool only without creating any datasource?

And access the database directly by getting a connection from the connection pool?

What are the advantages and disadvantages?

Thanks for your help.
Rootorder
 
Ranch Hand
Posts: 79
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can always create connection pool without creating data source but data sources are tied to atlead one connection pool and when a client needs a connection from connection pool, it looks up data source in jndi and then gets a connection from connection using data source
I think you can also get a connection without using a data source
 
reply
    Bookmark Topic Watch Topic
  • New Topic