• 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

Rangarajan Balasubramanian

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Tell me what are the steps to get connection while using thin driver(native pure java driver)?
 
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please give a appropriate topic name...

here is a small code snipet for Oracle thin

Class.forName("oracle.jdbc.driver.OracleDriver");
String OracleURL="jdbc racle:thin:@Saraswati:1521 racle9";
String username="[is specific]";
String password="[is specific]";
Connection con=DriverManager.getConnection(OracleURL,username,password);

[ March 10, 2006: Message edited by: Ashutosh Limaye ]

[ March 10, 2006: Message edited by: Ashutosh Limaye ]
[ March 10, 2006: Message edited by: Ashutosh Limaye ]
 
Ranch Hand
Posts: 824
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Rangarajan Balasubramanian:
Tell me what are the steps to get connection while using thin driver(native pure java driver)?



Try to put a meaningful topic name next time.
reply
    Bookmark Topic Watch Topic
  • New Topic