Search Results
OK to copy?
Examples 31 through 40 of
77 (0.0040 seconds)
Class:
org.springframework.jdbc.object.SqlUpdateTests
©,
Rating:
0% of 0,
C1
Class: org.springframework.jdbc.object.SqlUpdateTests ©, Rating: 0% of 0, C1
Class: org.springframework.jdbc.object.SqlUpdateTests ©, Rating: 0% of 0, C1
Class: org.apache.catalina.realm.JDBCRealm ©, Rating: 0% of 0, C1
Class: org.apache.catalina.realm.JDBCRealm ©, Rating: 0% of 0, C1
Class: org.apache.catalina.valves.JDBCAccessLogValve ©, Rating: 0% of 0, C2
Class: org.apache.catalina.valves.JDBCAccessLogValve ©, Rating: 0% of 0, C2
Class: org.springframework.jdbc.core.JdbcTemplateQueryTests ©, Rating: 0% of 0, C2
Class: org.springframework.jdbc.core.JdbcTemplateQueryTests ©, Rating: 0% of 0, C2
Class: org.springframework.jdbc.core.JdbcTemplateQueryTests ©, Rating: 0% of 0, C2
127 ctrlPreparedStatement.setVoidCallable();
128
129 mockConnection.prepareStatement(UPDATE_INT_INT);
130 ctrlConnection.setReturnValue(mockPreparedStatement);
131
Class: org.springframework.jdbc.object.SqlUpdateTests ©, Rating: 0% of 0, C1
106 ctrlPreparedStatement.setVoidCallable();
107
108 mockConnection.prepareStatement(UPDATE_INT);
109 ctrlConnection.setReturnValue(mockPreparedStatement);
110
Class: org.springframework.jdbc.object.SqlUpdateTests ©, Rating: 0% of 0, C1
086 ctrlPreparedStatement.setVoidCallable();
087
088 mockConnection.prepareStatement(UPDATE);
089 ctrlConnection.setReturnValue(mockPreparedStatement);
090
Class: org.apache.catalina.realm.JDBCRealm ©, Rating: 0% of 0, C1
636 sb.append(userNameCol);
637 sb.append(" = ?");
638 preparedRoles =
639 dbConnection.prepareStatement(sb.toString());
640 }
Class: org.apache.catalina.realm.JDBCRealm ©, Rating: 0% of 0, C1
525 sb.append(userNameCol);
526 sb.append(" = ?");
527 preparedCredentials =
528 dbConnection.prepareStatement(sb.toString());
529 }
Class: org.apache.catalina.valves.JDBCAccessLogValve ©, Rating: 0% of 0, C2
589 + ") VALUES(?, ?, ?, ?, ?, ?)");
590 } else if (pattern.equals("combined")) {
591 ps = conn.prepareStatement
592 ("INSERT INTO " + tableName + " ("
593 + remoteHostField + ", " + userField + ", "
Class: org.apache.catalina.valves.JDBCAccessLogValve ©, Rating: 0% of 0, C2
582 conn.setAutoCommit(true);
583 if (pattern.equals("common")) {
584 ps = conn.prepareStatement
585 ("INSERT INTO " + tableName + " ("
586 + remoteHostField + ", " + userField + ", "
Class: org.springframework.jdbc.core.JdbcTemplateQueryTests ©, Rating: 0% of 0, C2
786 ctrlStatement.setVoidCallable();
787
788 mockConnection.prepareStatement(sql);
789 ctrlConnection.setReturnValue(mockStatement);
790
Class: org.springframework.jdbc.core.JdbcTemplateQueryTests ©, Rating: 0% of 0, C2
730 ctrlStatement.setVoidCallable();
731
732 mockConnection.prepareStatement(sql);
733 ctrlConnection.setReturnValue(mockStatement);
734
Class: org.springframework.jdbc.core.JdbcTemplateQueryTests ©, Rating: 0% of 0, C2
674 ctrlStatement.setVoidCallable();
675
676 mockConnection.prepareStatement(sql);
677 ctrlConnection.setReturnValue(mockStatement);
678