Uses of Interface
com.jenkov.mrpersister.itf.command.IDaoCommand

Packages that use IDaoCommand
com.jenkov.mrpersister   
com.jenkov.mrpersister.impl.command   
com.jenkov.mrpersister.itf.command   
 

Uses of IDaoCommand in com.jenkov.mrpersister
 

Methods in com.jenkov.mrpersister with parameters of type IDaoCommand
 java.lang.Object PersistenceManager.execute(IDaoCommand daoCommand)
          Equivalent to calling getDaoCommandExecutor().execute(daoCommand);
 java.lang.Object PersistenceManager.executeTransaction(IDaoCommand daoCommand)
          Equivalent to calling getDaoCommandExecutor().executeTransaction(daoCommand);
 java.lang.Object PersistenceManager.executeTransactionUnchecked(IDaoCommand daoCommand)
          Equivalent to calling getDaoCommandExecutorUnchecked().executeTransaction(daoCommand);
 java.lang.Object PersistenceManager.executeUnchecked(IDaoCommand daoCommand)
          Equivalent to calling getDaoCommandExecutorUnchecked().execute(daoCommand);
 

Uses of IDaoCommand in com.jenkov.mrpersister.impl.command
 

Methods in com.jenkov.mrpersister.impl.command with parameters of type IDaoCommand
 java.lang.Object DaoCommandExecutorUnchecked.execute(IDaoCommand command)
           
 java.lang.Object DaoCommandExecutor.execute(IDaoCommand command)
           
 java.lang.Object DaoCommandExecutorUnchecked.execute(IDaoCommand command, java.sql.Connection connection)
           
 java.lang.Object DaoCommandExecutor.execute(IDaoCommand command, java.sql.Connection connection)
           
 java.lang.Object DaoCommandExecutorUnchecked.execute(java.lang.Object configKey, IDaoCommand command)
           
 java.lang.Object DaoCommandExecutor.execute(java.lang.Object configKey, IDaoCommand command)
           
 java.lang.Object DaoCommandExecutorUnchecked.execute(java.lang.Object configKey, IDaoCommand command, java.sql.Connection connection)
           
 java.lang.Object DaoCommandExecutor.execute(java.lang.Object configKey, IDaoCommand command, java.sql.Connection connection)
           
protected  java.lang.Object DaoCommandExecutor.execute(java.lang.Object configKey, IDaoCommand command, java.sql.Connection connection, IDaosFactoryStrategy daosFactoryStrategy)
           
 java.lang.Object DaoCommandExecutorUnchecked.executeTransaction(IDaoCommand command)
           
 java.lang.Object DaoCommandExecutor.executeTransaction(IDaoCommand command)
           
 java.lang.Object DaoCommandExecutorUnchecked.executeTransaction(IDaoCommand command, java.sql.Connection connection)
           
 java.lang.Object DaoCommandExecutor.executeTransaction(IDaoCommand command, java.sql.Connection connection)
           
 java.lang.Object DaoCommandExecutorUnchecked.executeTransaction(java.lang.Object config, IDaoCommand command)
           
 java.lang.Object DaoCommandExecutor.executeTransaction(java.lang.Object configKey, IDaoCommand command)
           
 java.lang.Object DaoCommandExecutorUnchecked.executeTransaction(java.lang.Object config, IDaoCommand command, java.sql.Connection connection)
           
 java.lang.Object DaoCommandExecutor.executeTransaction(java.lang.Object configKey, IDaoCommand command, java.sql.Connection connection)
           
protected  java.lang.Object DaoCommandExecutor.executeTransaction(java.lang.Object configKey, IDaoCommand command, java.sql.Connection connection, IDaosFactoryStrategy daosFactoryStrategy)
           
 

Uses of IDaoCommand in com.jenkov.mrpersister.itf.command
 

Methods in com.jenkov.mrpersister.itf.command with parameters of type IDaoCommand
 java.lang.Object IDaoCommandExecutorUnchecked.execute(IDaoCommand command)
          Obtains a connection from the default data source, executes this dao command and closes the connection afterwards.
 java.lang.Object IDaoCommandExecutor.execute(IDaoCommand command)
          Obtains a connection from the default data source, executes this dao command and closes the connection afterwards.
 java.lang.Object IDaoCommandExecutorUnchecked.execute(IDaoCommand command, java.sql.Connection connection)
          Executes this dao command using the given connection, and closes the connection afterwards.
 java.lang.Object IDaoCommandExecutor.execute(IDaoCommand command, java.sql.Connection connection)
          Executes this dao command using the given connection, and closes the connection afterwards.
 java.lang.Object IDaoCommandExecutorUnchecked.execute(java.lang.Object configKey, IDaoCommand command)
          Obtains a connection from the data source set on the IPersistenceConfiguration stored by the given configKey (in the persistence managers config factory), executes this dao command and closes the connection afterwards.
 java.lang.Object IDaoCommandExecutor.execute(java.lang.Object configKey, IDaoCommand command)
          Obtains a connection from the data source set on the IPersistenceConfiguration stored by the given configKey (in the persistence managers config factory), executes this dao command and closes the connection afterwards.
 java.lang.Object IDaoCommandExecutorUnchecked.execute(java.lang.Object configKey, IDaoCommand command, java.sql.Connection connection)
          Executes this dao command using the given connection and persistence configuration stored by the given config key, and closes the connection afterwards.
 java.lang.Object IDaoCommandExecutor.execute(java.lang.Object configKey, IDaoCommand command, java.sql.Connection connection)
          Executes the dao command using the given connection and the IPersistenceConfiguration stored by the given configKey in the persistence managers config factory), and closes the connection afterwards.
 java.lang.Object IDaoCommandExecutorUnchecked.executeTransaction(IDaoCommand command)
          Obtains a connection from the default data source, sets auto commit to false, executes the dao command and tries to commit the transaction.
 java.lang.Object IDaoCommandExecutor.executeTransaction(IDaoCommand command)
          Obtains a connection from the default data source, sets auto commit to false, executes the dao command and tries to commit the transaction.
 java.lang.Object IDaoCommandExecutorUnchecked.executeTransaction(IDaoCommand command, java.sql.Connection connection)
          Executes the dao command using the given connection, and tries to commit the transaction.
 java.lang.Object IDaoCommandExecutor.executeTransaction(IDaoCommand command, java.sql.Connection connection)
          Sets auto commit to false on the given connection, executes the dao command and tries to commit the transaction.
 java.lang.Object IDaoCommandExecutorUnchecked.executeTransaction(java.lang.Object config, IDaoCommand command)
          Obtains a connection from the data source set on the IPersistenceConfiguration stored by the given configKey (in the persistence managers config factory), sets auto commit to false, executes the dao command and tries to commit the transaction.
 java.lang.Object IDaoCommandExecutor.executeTransaction(java.lang.Object configKey, IDaoCommand command)
          Obtains a connection from the data source set on the IPersistenceConfiguration stored by the given configKey (in the persistence managers config factory), sets auto commit to false, executes the dao command and tries to commit the transaction.
 java.lang.Object IDaoCommandExecutorUnchecked.executeTransaction(java.lang.Object config, IDaoCommand command, java.sql.Connection connection)
          Executes the dao command using the given connection, and tries to commit the transaction.
 java.lang.Object IDaoCommandExecutor.executeTransaction(java.lang.Object configKey, IDaoCommand command, java.sql.Connection connection)
          Obtains the persistence configuration stored by the given config key, (in the persistence managers config factory), sets auto commit to false on the given connection, executes the dao command, and tries to commit the transaction.