Not sure whether my vote counts. But if it does:
My vote:
[ ] Release Slide 2.0 final
[X] Release Slide 2.0 RC2
[ ] Do not make any releases now
[ ] I do not care
I am using Slide in J2EE environment and currently I am in the initial
phase. I came across one major bug, which if fixed will be big help for
using Slide in J2EE environment. It is regarding autocommit in J2EEStore.
Without setting autocommit to false, commits and rollbacks are not allowed
on the non-transactional J2EE datasource.
Currently in Slide 2.0 RC1 J2EEStore:
protected Connection getNewConnection() throws SQLException {
return ds.getConnection();
}
My local fix:
protected Connection getNewConnection() throws SQLException {
Connection con = ds.getConnection();
boolean autoCommit = con.getAutoCommit();
if(autoCommit)
con.setAutoCommit(false);
return con;
}
I will be doing more intensive testing over next 2 weeks and will report any
show stopper issues, if I come across them. If things go well, I will be
working on Oracle and DB2 port as well.
Regards,
Ritu
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]