view m-toolbox/classes/@workspaceBrowser/cb_retrieve.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents 317b5f447f3e
children
line wrap: on
line source

% CB_RETRIEVE retrieves objects from an LTPDA repository
%
% CALL: workspaceBrowser.cb_retrieve
%
% M Hewitson 13-11-08
%
% $Id: cb_retrieve.m,v 1.8 2010/03/23 17:39:38 ingo Exp $
%
function cb_retrieve(varargin)
  
  wb = getappdata(0, 'WorkspaceBrowser');
  
  % Get a connection from the database connection manager
  conn = LTPDADatabaseConnectionManager().connect();
  
  warning('off', 'MATLAB:JavaEDTAutoDelegation');
  qb = mpipeline.repository.RepositoryRetrieveDialog([], true);
  qb.setVisible(true);
  warning('on', 'MATLAB:JavaEDTAutoDelegation');
      
  if ~qb.isCancelled        
    workspaceBrowser.retrieveObjectsFromDialog(qb, conn);
  end
  
end