I suspect THAT IN MY CASE ONLY select statement works, insert statement doesn't works since when open with Access the mdb file non such records seen, and also when execute java programs to view records like below appears only old TABLE(old 3 records only) unmodified...well???
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection conn = DriverManager.getConnection
("jdbc

dbc:RedWines");
Statement sttmnt = conn.createStatement (
ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_READ_ONLY );
ResultSet rs=sttmnt.executeQuery("SELECT * FROM WINES");
// Retrieve records from WINES
int typeResultSet = rs.getType();
System.out.println("Type result set: " + typeResultSet);
rs.afterLast(); // Move pointer after the last record
while (rs.previous()) { // Backwards through result set
String name = rs.getString("NAME_WINE");
String color = rs.getString("COLOR_WINE");
int on_hand = rs.getInt("ON_HAND");
System.out.println(name + " " + on_hand + " " + color);
}
rs.absolute(3); // Move to record number 3
System.out.println("The name in the 5th record is " +
rs.getString("NAME_WINE"));
rs.relative(-1); // Move backwards one record
System.out.println("The name in the 2nd record is " +
rs.getString("NAME_WINE"));
rs.close();
sttmnt.close ();
conn.close();