Get the names of columns in the PgResult.
Return the next available result or {@code null}, e.g for a simple query that executed multiple queries or for a batch result.
Get the property with the specified {@link PropertyKind}.
Get the number of the affected rows in the operation to this PgResult. <p/> The meaning depends on the executed statement: <ul> <li>INSERT: the number of rows inserted</li> <li>DELETE: the number of rows deleted</li> <li>UPDATE: the number of rows updated</li> <li>SELECT: the number of rows retrieved</li> </ul>
Get the number of rows in the PgResult.
Get the result value.
Represents the result of an operation on database. @param <T>