try { URL configFile = Loader.getResource(args[0]); Properties properties = new Properties(); properties.load(configFile.openStream()); new CreateSASCodeForTableImport(properties).generate(args[1]); } catch (IOException ioe) { logger.log(Level.FATAL, "", ioe); }
where args[0] is the name of a property file on the classpath and args[1] is the sql statement
@author Roger Svensson, Swanthe Lindgren
@responsible Roger
|
|
|
|