Monday, January 13, 2014

Java JDBC programming Example 5

//Note: create  a DSN in the name of sql that is pointing the table name limbs in the database with three String fields








//rs is not scrollable RETRIVEING COLUMN VALUES using column numbers
import java.sql.*;
class Jdbc5{
public static void main(String...arg) throws Exception{
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         Connection c =  DriverManager.getConnection("jdbc:odbc:sql");
         Statement  st = c.createStatement();
         ResultSet r = st.executeQuery("select * from limbs");
        try{  
 
while(r.next()){
       
              System.out.println(r.getString(1));
              System.out.println(r.getInt(2));
              System.out.println(r.getInt(3));
   
        }
        
         }catch(Exception e){System.out.println("Error :");e.printStackTrace();}
      r.close();
      st.close();
      c.close();
}
}

No comments: