[ 
http://issues.apache.org/jira/browse/DERBY-412?page=comments#action_12316381 ] 

Kathey Marsden commented on DERBY-412:
--------------------------------------

Hi David,

It seems that Brokered connections print the EmbeddedConnection classname 
instead of the actual class name (BrokeredConnection30).  Is the format tested? 
I remember you adding tests for your original change but don't see test changes 
in this patch.

Thanks

Kathey

CODE:
org.apache.derby.jdbc.EmbeddedXADataSource ds =
                new org.apache.derby.jdbc.EmbeddedXADataSource();


            ds.setDatabaseName("wombat");
            ds.setUser("dbuser1");
            ds.setPassword("******");
            XAConnection xaConn = ds.getXAConnection();
            Connection conn = xaConn.getConnection();
                        System.out.println("xaConn.toString():" + 
xaConn.toString());
                        System.out.println("conn.toString():" + 
conn.toString());
                        System.out.println("conn.getClass().getName()" + 
conn.getClass().getName());


OUTPUT

xaConn.toString():[EMAIL PROTECTED] (ID = 0), Physical Connection = [EMAIL 
PROTECTED] (XID = 19), (SESSIONID = 1), (DATABASE = wombat), (DRDAID = null) 
conn.toString():[EMAIL PROTECTED] (XID = 19), (SESSIONID = 1), (DATABASE = 
wombat), (DRDAID = null) 
conn.getClass().getName()org.apache.derby.iapi.jdbc.BrokeredConnection30



> Connection toString should show type information and  the meaning of the 
> identifier that it prints
> --------------------------------------------------------------------------------------------------
>
>          Key: DERBY-412
>          URL: http://issues.apache.org/jira/browse/DERBY-412
>      Project: Derby
>         Type: Bug
>     Versions: 10.1.1.0, 10.2.0.0
>     Reporter: Kathey Marsden
>     Assignee: David Van Couvering
>      Fix For: 10.2.0.0
>  Attachments: DERBY-412.diff
>
> After the change for DERBY-243 the  connection toString() output is  an 
> integer which correspond to SESSIONID.  The output should identify the type 
> and also the meaning of the identifier that it prints.  Perhaps a format that 
> appends the default toString output with the sessionid information as it 
> prints in the derby.log would be more informative.
> [EMAIL PROTECTED] (SESSONID = 2)
> Ultimately this could be expanded to included other diagnostic information e.g
> [EMAIL PROTECTED] (XID = 132), (SESSIONID = 5), (DATABASE = wombat), (DRDAID 
> = NF000001.H324-940125304405039114{7})

-- 
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

Reply via email to