Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ abstract class AS400JDBCConnection
extends ToolboxWrapper
/* endif */

implements Connection
implements Connection, AutoCloseable
{

static final int DATA_COMPRESSION_NONE_ = 0; // @ECA
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class AS400JDBCConnectionHandle
/* ifdef JDBC40 */
extends ToolboxWrapper
/* endif */
implements Connection //@A5A
implements Connection, AutoCloseable //@A5A
//@A5D extends AS400JDBCConnection
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
* </li>
* </ul>
**/
public class AS400JDBCPooledConnection implements PooledConnection
public class AS400JDBCPooledConnection implements PooledConnection, AutoCloseable
{
static final String copyright = "Copyright (C) 1997-2010 International Business Machines Corporation and others.";

Expand Down
Loading