Search Results
OK to copy?
Examples 71 through 77 of
77 (0.191 seconds)
Class:
org.springframework.jdbc.core.JdbcTemplateTests
©,
Rating:
0% of 0,
C1
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C2
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C3
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C1
0758 ctrlPreparedStatement.setVoidCallable();
0759
0760 mockConnection.prepareStatement(sql);
0761 ctrlConnection.setReturnValue(mockPreparedStatement);
0762
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C2
0705 ctrlDatabaseMetaData.setReturnValue(true);
0706
0707 mockConnection.prepareStatement(sql);
0708 ctrlConnection.setReturnValue(mockPreparedStatement);
0709 mockConnection.getMetaData();
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C3
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C1
0136 ctrlPreparedStatement.setVoidCallable();
0137
0138 mockConnection.prepareStatement(sql);
0139 ctrlConnection.setReturnValue(mockPreparedStatement);
0140
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C1
0096 ctrlPreparedStatement.setVoidCallable();
0097
0098 mockConnection.prepareStatement(sql);
0099 ctrlConnection.setReturnValue(mockPreparedStatement);
0100
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C1
1652
1653 public PreparedStatement createPreparedStatement(Connection conn) throws SQLException {
1654 PreparedStatement ps = conn.prepareStatement(sql);
1655 ps.setInt(1, id);
1656 return ps;
Class: org.springframework.jdbc.core.JdbcTemplateTests ©, Rating: 0% of 0, C1
1554 template.query(new PreparedStatementCreator() {
1555 public PreparedStatement createPreparedStatement(Connection con) throws SQLException {
1556 return con.prepareStatement("my query");
1557 }
1558 public String getSql() {