[jboss-dev-forums] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: Duplicated client IDs
clebert.suconic@jboss.com
do-not-reply at jboss.com
Tue Feb 6 20:09:56 EST 2007
I had to add a new method to JDBCSupport to act as a hook.
JDBCSupport is doing a crosscheck betwen sqlProperties and default statements. When you define POPULATE.TABLES... JDBCSupport throws an exception during start.
protected boolean ignoreVerificationOnStartup(String statementName)
| {
| // Do not cross-check on POPULATE.TABLES. as we just load the tables with them
| if (statementName.startsWith("POPULATE.TABLES."))
| {
| return true;
| }
| return false;
| }
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4012228#4012228
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4012228
More information about the jboss-dev-forums
mailing list