File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -113,24 +113,6 @@ protected static <T extends TestSuiteCase> List<T> iterateExecFile(String filena
113
113
return testCaseList ;
114
114
}
115
115
116
- public static void printResult (ResultSet resultSet ) throws SQLException {
117
- ResultSetMetaData metaData = resultSet .getMetaData ();
118
- int columnCount = metaData .getColumnCount ();
119
- for (int i = 0 ; i < columnCount ; i ++) {
120
- System .out .print (metaData .getColumnLabel (i + 1 ) + " " );
121
- }
122
- System .out .println ();
123
- int count = 0 ;
124
- while (resultSet .next ()) {
125
- for (int i = 0 ; i < columnCount ; i ++) {
126
- System .out .print (resultSet .getObject (i + 1 ) + " " );
127
- }
128
- count ++;
129
- System .out .println ();
130
- }
131
- System .out .println ("count:" + count );
132
- }
133
-
134
116
protected static String getConnectionUrl (TestSuiteEnv env ) {
135
117
return env .getDevConnectionUrl ();
136
118
}
You can’t perform that action at this time.
0 commit comments