• 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

Creating Data Source for Oracle in J2EE Server

 
Ranch Hand
Posts: 102
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually the problem for me i can connect the PoolBase Server,but for Oracle I don't know the Driver name,Server name etc which the Server is asking while creating the Data Source. Can any one provide me that Strings or any links.

Thanks
Mahendran
 
Author
Posts: 531
Mac OS X Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi
here is the driver class and connection url



you know the you should specify the user name and password also change the database_name to your own database
[ August 23, 2006: Message edited by: Masoud Kalali ]
 
Mahendran Aiyappan
Ranch Hand
Posts: 102
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for replying Masoud Kalali Sir, but my question is not for PointBase. I want the driver classes for Oracle.


Thanks
Mahendran
 
Masoud Kalali
Author
Posts: 531
Mac OS X Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
aha , sorry for my misunderstanding.
so you mean you want the class name for oracle database and you want to define a datasource in oracle application server ?
i assume that you want to know jdbc driver class name and its connection url.

here it is :


user and password are your user name and pass and SID is simply your database name.

you should add oracle\product\10.2.0\OraDB\jdbc\lib\ojdbc14.jar to your classpath to allows the application server to find the class .
 
reply
    Bookmark Topic Watch Topic
  • New Topic