database-resource-manager/src/test/java/org/gcube/dataanalysis/test/TestDatabasesResourcesManag...

35 lines
900 B
Java

package org.gcube.dataanalysis.test;
/** Class that interacts with the IS in order to recover some information about the available databases and the contained data.
* Once recovered the interested data he can import these in the database used by the SM.
* */
public class TestDatabasesResourcesManager {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
// the user sets the scope
// the user views the available databases in the fixed scope
// the user selects a database
// the user wants to view some characteristics of the chosen database such as: the tables, rows' number and the create statement
// the user wants to recover data from a certain table so he submits a 'select' query on the database
// ?? the user create a table in the database's SM and import the recovered data
}
}