View Single Post
  #3 (permalink)  
Old 09-24-2007, 11:48 PM
S.Vinothkumar S.Vinothkumar is offline
D-Web Genius
 
Join Date: May 2007
Posts: 1,061
S.Vinothkumar is on a distinguished road
Default Re: JAVA Oracle connectivity with Jdbc-odbc bridge

1step is: getdriver
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");


2 step is register the URL
Connection con=DriverManager.getConnection("jdbcdbcrajava ","scott","tiger");


3step is : create the statement

Statemnt st=con.createStatement();

4 step is: Execute the Query and get the results from resultset


4 step is: close the all connections
__________________
S.VinothkumaR
Behind me is infinite power,
Before me is Endless Possibility,
Around me is Boundless Opportunity,
Why should I fear!
Reply With Quote