8
Se ho metodo che utilizzano Hiberante, in questo modo:elenco query hibernate: vuoto o nullo?
public <T> T typedQuery(Query q, Class<T> type) {
List<T> results = q.list();
//result will be null or empty List ?
}
Se la query non sarà possibile ottenere alcun record dalla tabella, result
sarà null
o lista vuota?