List_ListView_PgSQL2
  • This examples reports EMP table in PostgreSQL DB, and uses RowSet instead of ResultSet
  • In this example loaddata method returns a List, then boxed with ObservableList
    ObservableList<String> oString1 =
    FXCollections.<String>observableArrayList( ext1.loaddata());
  • Finally a ListView binds to this List-Collection-DataType.
     
PostGreSQL Emp Table

 

Complete Code: List_ListView_PgSQL2.txt