simultaneous use of database

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • andie
    New Member
    • Mar 2008
    • 1

    simultaneous use of database

    public void execute(DataTra nsactionIfc dataTransaction ,

    DataConnectionI fc dataConnection, DataActionIfc action)

    throws DataException {

    JdbcHelper oldHelper = JdbcUtilities.g etJdbcHelperCla ss();

    try

    {

    JdbcUtilities.s etJdbcHelperCla ss(new Oracle8iHelper( ));

    jdbcHelperClass = JdbcUtilities.g etJdbcHelperCla ss();

    super.execute(d ataTransaction, dataConnection, action);

    JdbcUtilities.s etJdbcHelperCla ss(oldHelper);

    }finally

    {

    jdbcHelperClass = oldHelper;

    }

    }


    what seems to be the problem with the code.. it uses to database 1 sql and the other 1 was oracle
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Could you describe your problem in more detail ... using full English words as well.

    Comment

    Working...