Search Results
OK to copy?
Examples 1 through 10 of
16 (0.0020 seconds)
Class:
org.springframework.jdbc.core.CallableStatementCreatorFactory
©,
Rating:
100% of 1,
C3
Class: org.springframework.jdbc.core.CallableStatementCreatorFactory ©, Rating: 0% of 0, C3
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
170 }
171 else {
172 cs = con.prepareCall(callString, resultSetType,
173 updatableResults ? ResultSet.CONCUR_UPDATABLE : ResultSet.CONCUR_READ_ONLY);
174 }
Class: org.springframework.jdbc.core.CallableStatementCreatorFactory ©, Rating: 0% of 0, C3
167 CallableStatement cs = null;
168 if (resultSetType == ResultSet.TYPE_FORWARD_ONLY && !updatableResults) {
169 cs = con.prepareCall(callString);
170 }
171 else {
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
479 ctrlCallable.setVoidCallable();
480
481 mockConnection.prepareCall(
482 "{call " + SqlTypeValueStoredProcedure.SQL + "(?, ?)}");
483 ctrlConnection.setReturnValue(mockCallable);
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
413 ctrlCallable.setVoidCallable();
414
415 mockConnection.prepareCall(
416 "{call " + StoredProcedureWithResultSetMapped.SQL + "()}");
417 ctrlConnection.setReturnValue(mockCallable);
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
366 ctrlCallable.setVoidCallable();
367
368 mockConnection.prepareCall(
369 "{call " + StoredProcedureWithResultSet.SQL + "()}");
370 ctrlConnection.setReturnValue(mockCallable);
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
323 ctrlCallable.setVoidCallable();
324
325 mockConnection.prepareCall(
326 "{call " + StoredProcedureExceptionTranslator.SQL + "()}");
327 ctrlConnection.setReturnValue(mockCallable);
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
279 ctrlCallable.setVoidCallable();
280
281 mockConnection.prepareCall("{call " + NullArg.SQL + "(?)}");
282 ctrlConnection.setReturnValue(mockCallable);
283
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
251 ctrlCallable.setVoidCallable();
252
253 mockConnection.prepareCall("{call " + StoredProcedureConfiguredViaJdbcTemplate.SQL + "(?, ?)}");
254 ctrlConnection.setReturnValue(mockCallable);
255
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
196 ctrlConnection = MockControl.createControl(Connection.class);
197 mockConnection = (Connection) ctrlConnection.getMock();
198 mockConnection.prepareCall("{call " + StoredProcedureConfiguredViaJdbcTemplate.SQL + "(?, ?)}");
199 ctrlConnection.setReturnValue(mockCallable, 1);
200 mockConnection.close();
Class: org.springframework.jdbc.object.StoredProcedureTests ©, Rating: 0% of 0, C1
153 ctrlCallable.setVoidCallable();
154
155 mockConnection.prepareCall("{call " + AddInvoice.SQL + "(?, ?, ?)}");
156 ctrlConnection.setReturnValue(mockCallable);
157