Skip to content

Commit

Permalink
Extracting version from database V3
Browse files Browse the repository at this point in the history
  • Loading branch information
SiddharthBITS committed Jan 22, 2025
1 parent e726fe7 commit cc776ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/JDBC/src/test/java/com/sqlsamples/TestQueryFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ public void TestQueryBatch(String inputFileName) throws SQLException, ClassNotFo

int columnCount = rs.getMetaData().getColumnCount();

StringBuilder queryOutputBuilder = new StringBuilder;
StringBuilder queryOutputBuilder = new StringBuilder();
while (rs.next()) {
for (int i = 1; i <= columnCount; i++)
{
Expand Down

0 comments on commit cc776ec

Please sign in to comment.