These are my settings ...

    <!--
    These settings control SqlMap configuration details, primarily to do with 
transaction
    management. They are all optional (see the Developer Guide for more).
    -->
    <settings
            cacheModelsEnabled="true"
            enhancementEnabled="true"
            lazyLoadingEnabled="true"
            maxRequests="32"
            maxSessions="10"
            maxTransactions="5"
            useStatementNamespaces="true"
        />

    <!--
    Configure a datasource to use with this SQL Map using SimpleDataSource.
    Notice the use of the properties from the above resource
    -->
    <transactionManager type="JDBC" >
        <dataSource type="....">
            <property name="JDBC.Driver" value="${jdbc.driver}"/>
            <property name="JDBC.ConnectionURL" value="${jdbc.url}"/>
            <property name="JDBC.Username" value="${jdbc.user}"/>
            <property name="JDBC.Password" value="${jdbc.password}"/>
            <property name="JDBC.DefaultAutoCommit" value="true"/>
        </dataSource>   
    </transactionManager>




-----Original Message-----
From: Jeff Butler [mailto:[email protected]] 
Sent: Wednesday, April 14, 2010 9:44 AM
To: [email protected]
Subject: Re: Locks

It's dependent on the transaction isolation level set on your
connection.  There are many variables involved - what is your
environment (POOLED, UNPOOLED, JNDI, etc.)?

Jeff Butler


On Wed, Apr 14, 2010 at 9:38 AM, Ejaz X Mohammed
<[email protected]> wrote:
> Hello,
>
>
>
> I have an application running on Sybase. DBAs tell me that it is generating
> too many locks ... I know that all I'm doing is SELECT.
>
>
>
> I'm not sure how SELECT can create locks in database.
>
>
>
> Any suggestions ?
>
>
>
> Thanks
>
> Ejaz
>
> This email is confidential and subject to important disclaimers and
> conditions including on offers for the purchase or sale of securities,
> accuracy and completeness of information, viruses, confidentiality, legal
> privilege, and legal entity disclaimers, available at
> http://www.jpmorgan.com/pages/disclosures/email.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
<p><span STYLE="color :#000000;background-color :#FFFFFF">
This email is confidential and subject to important disclaimers and conditions 
including on offers for the purchase or sale of securities, accuracy and 
completeness of information, viruses, confidentiality, legal privilege, and 
legal entity disclaimers, available at 
http://www.jpmorgan.com/pages/disclosures/email.  
</span></p>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to