View Javadoc

1   package com.imcode.db;
2   
3   public interface Database {
4   
5       Object execute( DatabaseCommand databaseCommand ) throws DatabaseException;
6   
7       /*** @deprecated Use {@link #execute(DatabaseCommand)} instead. */
8       Object executeCommand( DatabaseCommand databaseCommand ) throws DatabaseException;
9       
10  }