try {
ResultSet rs = stmt.executeQuery(query);
if (rs.next()) {
// This connector property exists, update the property value.
if (fieldValue == null) {
rs.updateNull(propertyValueColumn);
} else {
rs.updateString(propertyValueColumn, fieldValue);
}
// Bump the ModifyStamp, so others may know the value has changed.
rs.updateInt(modifyStampColumn, rs.getInt(modifyStampColumn) + 1);