如何使用hibernate作为JTablemodel中的数据源

时间:2011-01-14 09:13:39

标签: hibernate

我想做类似以下的事情(使用jdbc作为表模型中的数据源)但是使用hibernate。 我该怎么办呢? 感谢

  // Table Model
    import javax.swing.table.AbstractTableModel;
    import java.sql.*;
    import java.util.Vector;

    public class MyTableModel extends AbstractTableModel {

    Connection myConnect; // Hold the JDBC Connection
    Statement myStatement; // Will contain the SQL statement
    ResultSet myResultSet; // Contains the result of my SQL statement

1 个答案:

答案 0 :(得分:0)

您可以执行以下操作:

public class MyTableModel extends AbstractTableModel {
    Session mySession; // Hibernate Session, used to run queries
    String myHQL; // Will contain the HQL statement
    List<?> myResult; // Contains the result of my HQL statement

希望我能理解你的问题。