Java Code Examples for org.apache.tomcat.jdbc.pool.DataSourceProxy#getConnection()
The following examples show how to use
org.apache.tomcat.jdbc.pool.DataSourceProxy#getConnection() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestConnectionState.java From Tomcat8-Source-Read with MIT License | 8 votes |
@Test public void testDefaultCatalog() throws Exception { DataSourceProxy d1 = this.createDefaultDataSource(); d1.setMaxActive(1); d1.setJdbcInterceptors(ConnectionState.class.getName()); d1.setDefaultCatalog("information_schema"); d1.setMinIdle(1); Connection c1 = d1.getConnection(); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"information_schema"); c1.close(); c1 = d1.getConnection(); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"information_schema"); c1.setCatalog("mysql"); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"mysql"); c1.close(); c1 = d1.getConnection(); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"information_schema"); }
Example 2
Source File: TestConnectionState.java From Tomcat8-Source-Read with MIT License | 6 votes |
@Test public void testAutoCommitFalse() throws Exception { DataSourceProxy d1 = this.createDefaultDataSource(); d1.setMaxActive(1); d1.setMinIdle(1); d1.setMaxIdle(1); d1.setJdbcInterceptors(ConnectionState.class.getName()); d1.setDefaultAutoCommit(Boolean.FALSE); Connection c1 = d1.getConnection(); Assert.assertFalse("Auto commit should be false",c1.getAutoCommit()); c1.setAutoCommit(true); Assert.assertTrue("Auto commit should be true",c1.getAutoCommit()); c1.close(); c1 = d1.getConnection(); Assert.assertFalse("Auto commit should be false for a reused connection",c1.getAutoCommit()); d1.close(true); Assert.assertTrue("Connection should be closed",c1.isClosed()); }
Example 3
Source File: TestConnectionState.java From Tomcat7.0.67 with Apache License 2.0 | 6 votes |
@Test public void testAutoCommitFalse() throws Exception { DataSourceProxy d1 = this.createDefaultDataSource(); d1.setMaxActive(1); d1.setMinIdle(1); d1.setMaxIdle(1); d1.setJdbcInterceptors(ConnectionState.class.getName()); d1.setDefaultAutoCommit(Boolean.FALSE); Connection c1 = d1.getConnection(); Assert.assertFalse("Auto commit should be false",c1.getAutoCommit()); c1.setAutoCommit(true); Assert.assertTrue("Auto commit should be true",c1.getAutoCommit()); c1.close(); c1 = d1.getConnection(); Assert.assertFalse("Auto commit should be false for a reused connection",c1.getAutoCommit()); d1.close(true); Assert.assertTrue("Connection should be closed",c1.isClosed()); }
Example 4
Source File: TestConnectionState.java From Tomcat7.0.67 with Apache License 2.0 | 6 votes |
@Test public void testDefaultCatalog() throws Exception { DataSourceProxy d1 = this.createDefaultDataSource(); d1.setMaxActive(1); d1.setJdbcInterceptors(ConnectionState.class.getName()); d1.setDefaultCatalog("information_schema"); d1.setMinIdle(1); Connection c1 = d1.getConnection(); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"information_schema"); c1.close(); c1 = d1.getConnection(); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"information_schema"); c1.setCatalog("mysql"); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"mysql"); c1.close(); c1 = d1.getConnection(); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"information_schema"); }
Example 5
Source File: TestConnectionState.java From tomcatsrc with Apache License 2.0 | 6 votes |
@Test public void testAutoCommitFalse() throws Exception { DataSourceProxy d1 = this.createDefaultDataSource(); d1.setMaxActive(1); d1.setMinIdle(1); d1.setMaxIdle(1); d1.setJdbcInterceptors(ConnectionState.class.getName()); d1.setDefaultAutoCommit(Boolean.FALSE); Connection c1 = d1.getConnection(); Assert.assertFalse("Auto commit should be false",c1.getAutoCommit()); c1.setAutoCommit(true); Assert.assertTrue("Auto commit should be true",c1.getAutoCommit()); c1.close(); c1 = d1.getConnection(); Assert.assertFalse("Auto commit should be false for a reused connection",c1.getAutoCommit()); d1.close(true); Assert.assertTrue("Connection should be closed",c1.isClosed()); }
Example 6
Source File: TestConnectionState.java From tomcatsrc with Apache License 2.0 | 6 votes |
@Test public void testDefaultCatalog() throws Exception { DataSourceProxy d1 = this.createDefaultDataSource(); d1.setMaxActive(1); d1.setJdbcInterceptors(ConnectionState.class.getName()); d1.setDefaultCatalog("information_schema"); d1.setMinIdle(1); Connection c1 = d1.getConnection(); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"information_schema"); c1.close(); c1 = d1.getConnection(); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"information_schema"); c1.setCatalog("mysql"); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"mysql"); c1.close(); c1 = d1.getConnection(); Assert.assertEquals("Catalog should be information_schema",c1.getCatalog(),"information_schema"); }
Example 7
Source File: TestConnectionState.java From Tomcat8-Source-Read with MIT License | 5 votes |
@Test public void testAutoCommitTrue() throws Exception { DataSourceProxy d1 = this.createDefaultDataSource(); d1.setMaxActive(1); d1.setJdbcInterceptors(ConnectionState.class.getName()); d1.setDefaultAutoCommit(Boolean.TRUE); d1.setMinIdle(1); Connection c1 = d1.getConnection(); Assert.assertTrue("Auto commit should be true",c1.getAutoCommit()); c1.setAutoCommit(false); Assert.assertFalse("Auto commit should be false",c1.getAutoCommit()); c1.close(); c1 = d1.getConnection(); Assert.assertTrue("Auto commit should be true for a reused connection",c1.getAutoCommit()); }
Example 8
Source File: TestConnectionState.java From Tomcat7.0.67 with Apache License 2.0 | 5 votes |
@Test public void testAutoCommitTrue() throws Exception { DataSourceProxy d1 = this.createDefaultDataSource(); d1.setMaxActive(1); d1.setJdbcInterceptors(ConnectionState.class.getName()); d1.setDefaultAutoCommit(Boolean.TRUE); d1.setMinIdle(1); Connection c1 = d1.getConnection(); Assert.assertTrue("Auto commit should be true",c1.getAutoCommit()); c1.setAutoCommit(false); Assert.assertFalse("Auto commit should be false",c1.getAutoCommit()); c1.close(); c1 = d1.getConnection(); Assert.assertTrue("Auto commit should be true for a reused connection",c1.getAutoCommit()); }
Example 9
Source File: TestConnectionState.java From tomcatsrc with Apache License 2.0 | 5 votes |
@Test public void testAutoCommitTrue() throws Exception { DataSourceProxy d1 = this.createDefaultDataSource(); d1.setMaxActive(1); d1.setJdbcInterceptors(ConnectionState.class.getName()); d1.setDefaultAutoCommit(Boolean.TRUE); d1.setMinIdle(1); Connection c1 = d1.getConnection(); Assert.assertTrue("Auto commit should be true",c1.getAutoCommit()); c1.setAutoCommit(false); Assert.assertFalse("Auto commit should be false",c1.getAutoCommit()); c1.close(); c1 = d1.getConnection(); Assert.assertTrue("Auto commit should be true for a reused connection",c1.getAutoCommit()); }