int result = stmt.executeUpdate();
stmt.close();
if(result != 1)
{
throw new AMQStoreException("Queue binding for queue with name " + queue.getNameShortString() + " to exchange "
+ exchange.getNameShortString() + " not found");
}
}
catch (SQLException e)
{
throw new AMQStoreException("Error removing binding for AMQQueue with name " + queue.getNameShortString() + " to exchange "
+ exchange.getNameShortString() + " in database: " + e.getMessage(), e);
}
finally
{
if(conn != null)