To generate SQL and java files:

  1. Use the Dods-ejen Wizard to generate your SQL files and java classes (dods.bat or dods (for Linux)). Also you can use dods Ant Task and include it in your build.xml file.
  2. Choose options (one or more):
    Generate SQL files (with or without using SQLSplitter tool)
    Generate java files
    Compile java classes

To build and compile dods java classes and sql files

  1. To create all sql files and java classes and to compile use generateAll target of build_dods.xml (default target).
  2. To create only sql files just type use generateSql target of build_dods.xml.
  3. To create only java files and to compile them use generateJava target of build_dods.xml.
  4. To create only java files and not to compile them use generateJavaNoCompile target of build_dods.xml. 
  5. To create SQL files and java files and not to compile them type use generateNoCompile target of build_dods.xml. 
  6. To create all sql files and java classes and to compile it. SQL files will be divided into separate files using SQLSplitter use generateAllSplit target of build_dods.xml. 
  7. To create SQL files and separate sql commands using SQLSplitter and java files and not to compile them use generateNoCompileSplit target of build_dods.xml. 
  8. To create only sql files and separate them in different files using SQLSplitter use generateSqlSplit target of build_dods.xml.