aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/example/psql.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/jdbc/example/psql.java')
-rw-r--r--src/interfaces/jdbc/example/psql.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interfaces/jdbc/example/psql.java b/src/interfaces/jdbc/example/psql.java
index 697198ce3a6..a5af214d574 100644
--- a/src/interfaces/jdbc/example/psql.java
+++ b/src/interfaces/jdbc/example/psql.java
@@ -50,7 +50,7 @@ public class psql
// Now the main loop.
int tt = 0, lineno = 1;
while (tt != StreamTokenizer.TT_EOF && ! done)
- { // done added by CWJ to permit \q command
+ {
System.out.print("[" + lineno + "] ");
System.out.flush();
@@ -72,7 +72,6 @@ public class psql
System.out.println("Now closing the connection");
st.close();
db.close();
-
}
/*