public static void dispose(PGConnectionImpl connection, ServerObjectType objectType, String objectName) throws SQLException {
if (objectName == null)
return;
CloseCommand close = connection.getProtocol().createClose(objectType, objectName);
connection.execute(close, false);
}