Java Code Examples for org.springframework.jdbc.support.incrementer.MySQLMaxValueIncrementer#setIncrementerName()
The following examples show how to use
org.springframework.jdbc.support.incrementer.MySQLMaxValueIncrementer#setIncrementerName() .
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: DataFieldMaxValueIncrementerTests.java From spring-analysis-note with MIT License | 6 votes |
@Test public void testMySQLMaxValueIncrementer() throws SQLException { given(dataSource.getConnection()).willReturn(connection); given(connection.createStatement()).willReturn(statement); given(statement.executeQuery("select last_insert_id()")).willReturn(resultSet); given(resultSet.next()).willReturn(true); given(resultSet.getLong(1)).willReturn(2L, 4L); MySQLMaxValueIncrementer incrementer = new MySQLMaxValueIncrementer(); incrementer.setDataSource(dataSource); incrementer.setIncrementerName("myseq"); incrementer.setColumnName("seq"); incrementer.setCacheSize(2); incrementer.setPaddingLength(1); incrementer.afterPropertiesSet(); assertEquals(1, incrementer.nextIntValue()); assertEquals(2, incrementer.nextLongValue()); assertEquals("3", incrementer.nextStringValue()); assertEquals(4, incrementer.nextLongValue()); verify(statement, times(2)).executeUpdate("update myseq set seq = last_insert_id(seq + 2)"); verify(resultSet, times(2)).close(); verify(statement, times(2)).close(); verify(connection, times(2)).close(); }
Example 2
Source File: DataFieldMaxValueIncrementerTests.java From java-technology-stack with MIT License | 6 votes |
@Test public void testMySQLMaxValueIncrementer() throws SQLException { given(dataSource.getConnection()).willReturn(connection); given(connection.createStatement()).willReturn(statement); given(statement.executeQuery("select last_insert_id()")).willReturn(resultSet); given(resultSet.next()).willReturn(true); given(resultSet.getLong(1)).willReturn(2L, 4L); MySQLMaxValueIncrementer incrementer = new MySQLMaxValueIncrementer(); incrementer.setDataSource(dataSource); incrementer.setIncrementerName("myseq"); incrementer.setColumnName("seq"); incrementer.setCacheSize(2); incrementer.setPaddingLength(1); incrementer.afterPropertiesSet(); assertEquals(1, incrementer.nextIntValue()); assertEquals(2, incrementer.nextLongValue()); assertEquals("3", incrementer.nextStringValue()); assertEquals(4, incrementer.nextLongValue()); verify(statement, times(2)).executeUpdate("update myseq set seq = last_insert_id(seq + 2)"); verify(resultSet, times(2)).close(); verify(statement, times(2)).close(); verify(connection, times(2)).close(); }
Example 3
Source File: DataFieldMaxValueIncrementerTests.java From spring4-understanding with Apache License 2.0 | 6 votes |
@Test public void testMySQLMaxValueIncrementer() throws SQLException { given(dataSource.getConnection()).willReturn(connection); given(connection.createStatement()).willReturn(statement); given(statement.executeQuery("select last_insert_id()")).willReturn(resultSet); given(resultSet.next()).willReturn(true); given(resultSet.getLong(1)).willReturn(2L, 4L); MySQLMaxValueIncrementer incrementer = new MySQLMaxValueIncrementer(); incrementer.setDataSource(dataSource); incrementer.setIncrementerName("myseq"); incrementer.setColumnName("seq"); incrementer.setCacheSize(2); incrementer.setPaddingLength(1); incrementer.afterPropertiesSet(); assertEquals(1, incrementer.nextIntValue()); assertEquals(2, incrementer.nextLongValue()); assertEquals("3", incrementer.nextStringValue()); assertEquals(4, incrementer.nextLongValue()); verify(statement, times(2)).executeUpdate("update myseq set seq = last_insert_id(seq + 2)"); verify(resultSet, times(2)).close(); verify(statement, times(2)).close(); verify(connection, times(2)).close(); }
Example 4
Source File: DataFieldMaxValueIncrementerTests.java From effectivejava with Apache License 2.0 | 6 votes |
@Test public void testMySQLMaxValueIncrementer() throws SQLException { given(dataSource.getConnection()).willReturn(connection); given(connection.createStatement()).willReturn(statement); given(statement.executeUpdate("update myseq set seq = last_insert_id(seq + 2)")).willReturn(1); given(statement.executeQuery("select last_insert_id()")).willReturn(resultSet); given(resultSet.next()).willReturn(true); given(resultSet.getLong(1)).willReturn(2L, 4L); MySQLMaxValueIncrementer incrementer = new MySQLMaxValueIncrementer(); incrementer.setDataSource(dataSource); incrementer.setIncrementerName("myseq"); incrementer.setColumnName("seq"); incrementer.setCacheSize(2); incrementer.setPaddingLength(1); incrementer.afterPropertiesSet(); assertEquals(1, incrementer.nextIntValue()); assertEquals(2, incrementer.nextLongValue()); assertEquals("3", incrementer.nextStringValue()); assertEquals(4, incrementer.nextLongValue()); verify(resultSet, times(2)).close(); verify(statement, times(2)).close(); verify(connection, times(2)).close(); }