{
List<DDLTable> commands = parser.parse( new File( getOptions().getDDL() ) );
LOG.info( "found {} commands", commands.size() );
parser.execute( commands );
}
catch( IOException exception )
{
throw new IllegalArgumentException( "unable to read file: " + getOptions().getDDL(), exception );
}