Thank you for your response. I am sorry If didn't regret in advance.

 

I changed my code in this way 

 

sqlMap.delegate.setMaxTransactions(75);

 

Now the output is the value I setted, but the maximum number of connection 
created is 32.

I guess that in case there is no setting in the SqlMapConfig.xml the default 
value is 32.

Can anybody confirm my guessing.

 

Thank you in advance

Giuseppe

 

 

 

________________________________

Da: Niels Beekman [mailto:[EMAIL PROTECTED] 
Inviato: venerdì 1 giugno 2007 19.41
A: [email protected]
Oggetto: RE: maxTransactions DefaultValue

 

maxSessions != maxTransactions, try setMaxTransactions(). But anyway, I don't 
know if settings these values after construction is even supported. You'd 
better put them in your 'newprops' variable, and then referencing them in the 
sqlmap-config.

 

Niels

 

________________________________

From: De Gaetano Giuseppe [mailto:[EMAIL PROTECTED] 
Sent: vrijdag 1 juni 2007 18:51
To: [email protected]
Subject: maxTransactions DefaultValue

 

Hi everybody,

 

I would like to know if it is possible to set the default value of the variable 
maxTransaction, without doing any setting in the SqlMapConfig.xml file

 

I have seen that it is possible to set this value in the SqlMapConfig.xml using 
the tag settings. In case you don't use this setting the default value is 32

 

This is a code sample of what I am trying to do.

 

SqlMapClientImpl sqlMap = (SqlMapClientImpl) 
SqlMapClientBuilder.buildSqlMapClient(reader,newprops);

sqlMap.delegate.setMaxSessions(75);

 

 

System.out.println("*** MAXTRANSACTIONS = " + 
((SqlMapClientImpl)sqlMap).delegate.getMaxTransactions());

 

 

The output is MAXTRANSACTIONS = 32 or the value extracted in the 
SqlMapConfig.xml file 

For example <settings lazyLoadingEnabled="true" maxTransactions="50"/>

 

Instead I expected an output like this MAXTRANSACTIONS = 75

 

 

 

Thank you in advance.

 

Giuseppe

 

 

Reply via email to