I have use the following code
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Con=DriverManager.getConnection("jdbc:Odbc:DRIVER");
Stat=Con.createStatement();
Result=Stat.executeQuery("SElect * from College");
Result.next();
System.out.println( Result.getString("Name"));
But I can not move the record pointer on the previous record by
Result.movePrevious()