Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Mapowanie zestawu wyników JDBC na obiekt

Jeśli nie chcesz używać żadnego dostawcy JPA, takiego jak OpenJPA lub Hibernate, możesz po prostu wypróbować Apache DbUtils.

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

Wtedy Twój kod będzie wyglądał tak:

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak pobrać aktualną wersję systemu zarządzania bazą danych MySQL (DBMS)?

  2. mysql przenieś wiersz między tabelami

  3. Model Codeigniter z wieloma warunkami aktualizacji przy użyciu instrukcji, gdzie oświadczenie

  4. Usuwanie wszystkich wierszy starszych niż 5 dni

  5. NodeJS mySQL Wstaw obiekt BLOB