• 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

Any alternative solution for IBM db beans?

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

Does JBoss have the similar datasource package lik com.ibm.db.beans? Especially DBSelect, DBSelectMetaData, DBConnectionSpec, etc.
Or other open source beans? I need to replace IBM db beans when migrate from Web Sphere to JBoss?


Thank you for your help,


 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No it doesn't. And without knowing what those beans do it is hard to say what you could use in their place.
 
San-Yih Pan
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Mr. Johnson,

In IBM db beans,
DBSelect - is being used to execute the SQL string.
DBConnectionSpec - is being used to set and get Data Source name, URL, username, password, and so on.
DBSelectMetaData - is being used to store ResultSet and set the lables for columns.

You said JBoss doesn't have the similar package. Is there any open source DB bean package we can replace the IBM db beans?
Or we have to implement a homemade uitilities?


Thank you for your help,
 
Peter Johnson
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This all sounds like stuff you can do with JDBC. So why would you even use the DB Beans? Other than to make your code dependent on WebSphere so that you are stuck with that as an app server (which is great for IBM, but not for you).
 
San-Yih Pan
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Mr. Johnson,

Thank you for your help.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic