[ http://issues.apache.org/jira/browse/DBCP-11?page=all ]

Phil Steitz updated DBCP-11:
----------------------------

    Bugzilla Id:   (was: 36077)
    Fix Version: 1.2.2

> [dbcp] stmt.getConnection() != Connection used to create the statement
> ----------------------------------------------------------------------
>
>          Key: DBCP-11
>          URL: http://issues.apache.org/jira/browse/DBCP-11
>      Project: Commons Dbcp
>         Type: Bug

>     Versions: 1.2 Final
>  Environment: Operating System: other
> Platform: All
>     Reporter: Alexander Rupsch
>      Fix For: 1.2.2

>
> Hi,
> I'm not an expert in implementing connection pools or jdbc itself. But 
> shouldn't
> the following code work?
> Connection con = pool.getConnection()
> PreparedStatement ps = con.prepareStatement()
> con.equals(ps.getConnection) // returns false!
> Ok, I don't need it to be equal, but the following also does not work:
> ps.getConnection().close()
> con.isClosed() // is false!!!
> That means, if I have a Statment and want to close its connection, I have to
> remember the conncetion. Is that the requested behavior? Because of this my 
> pool
> is running over.
> The java.sql API says that Statment.getConnection() has to be the connection
> which created the statement.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to