PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Converti un set di risultati da matrice SQL a matrice di stringhe

Usa:

Array a = rs.getArray("is_nullable");
String[] nullable = (String[])a.getArray();

Come spiegato qui

Array è di tipo SQL, getArray() restituisce un oggetto da trasmettere all'array java.