overwrite row count that prints instead of creating a list

This commit is contained in:
Paul Trowbridge 2022-10-20 14:19:03 -04:00
parent ac59b46e1f
commit 7cc653d685
1 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@ public class jrunner {
try {
stmtd = dcon.createStatement();
stmtd.executeUpdate(sql);
System.out.println(t);
System.out.print("\r" + t);
} catch (SQLException e) {
e.printStackTrace();
System.out.println(sql);
@ -266,7 +266,7 @@ public class jrunner {
try {
stmtd = dcon.createStatement();
stmtd.executeUpdate(sql);
System.out.println(t);
System.out.print("\r" + t);
} catch (SQLException e) {
e.printStackTrace();
System.out.println(sql);