Youngho Cho wrote:
>
> Hi .
> Today I download Apache-Turbine-20000712 and try to build.
> I received a build error at BasePeer.java 542, 546 , 554 , 558 line.
> So I modified the BasePeer.java
>
> 542
> - db = beginTransaction(criteria.getDbName());
> + dbCon = beginTransaction(criteria.getDbName());
>
> 546
> - db = DBBroker.getInstance().getConnection( criteria.getDbName() );
> + dbCon = DBBroker.getInstance().getConnection( criteria.getDbName() );
>
> 554
> - commitTransaction(db);
> + commitTransaction(dbCon);
>
> 558
> - DBBroker.getInstance().releaseConnection(db);
> + DBBroker.getInstance().releaseConnection(dbCon);
>
> and then success a building the turbine.
The problem you underscore has been corrected in CVS. The newer package
shouldn't have it.
Regis
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?: [EMAIL PROTECTED]