View Javadoc

1   package com.sri.emo.commandline;
2   
3   import com.jcorporate.expresso.core.dbobj.DBObject;
4   
5   /***
6    * Converts dbobjects into SQL statements.
7    * @author Michael Rimov
8    * @version 1.0
9    */
10  public interface SqlRowGenerator {
11  
12      /***
13       * Generates an insert statement
14       * @param individualRow DBObject
15       * @return String
16       */
17      String generateInsert(DBObject individualRow);
18  }