sql >> データベース >  >> RDS >> Mysql

JDBCResultSetのオブジェクトへのマッピング

    OpenJPAやHibernateなどのJPAプロバイダーを使用したくない場合は、ApacheDbUtilsを試してみてください。

    http://commons.apache.org/proper/commons-dbutils/examples .html

    この場合、コードは次のようになります。

    QueryRunner run = new QueryRunner(dataSource);
    
    // Use the BeanListHandler implementation to convert all
    // ResultSet rows into a List of Person JavaBeans.
    ResultSetHandler<List<Person>> h = new BeanListHandler<Person>(Person.class);
    
    // Execute the SQL statement and return the results in a List of
    // Person objects generated by the BeanListHandler.
    List<Person> persons = run.query("SELECT * FROM Person", h);
    


    1. PostgreSQLのクラウドへの移行-Amazon、Google、Microsoftのソリューションの比較

    2. doctrine2DBALでサブクエリに参加する

    3. SQL Serverで主キーを作成する方法(T-SQLの例)

    4. WordPressリンクはすべてダブルURLにリダイレクトされます