Logo 
Search:

Java Answers

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds
  Question Asked By: Jody Mills   on Apr 26 In Java Category.

  
Question Answered By: Gerardo Morgan   on Apr 26

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()

Share: 

 

This Question has 2 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on What is DriverManager class Or get search suggestion and latest updates.


Tagged: