I have a small application that connects with postgresql
, it stores 2 objects,
- Equipment that has three values: store type
String
, range typeString
and finally price typeint
.
To store them, I occupy a type composed of the three values that I have called datosPC
.
-
Componentes
that I save it with aarray
of 3 data typestring
in the database.
My question: When doing the resultSet, how can I retrieve one of the Team values? And to recover a value of Components?
Thanks for your time!