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.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interfaces/jdbc/example/psql.java b/src/interfaces/jdbc/example/psql.java
index b3fd308cd7b..697198ce3a6 100644
--- a/src/interfaces/jdbc/example/psql.java
+++ b/src/interfaces/jdbc/example/psql.java
@@ -4,7 +4,7 @@ import java.io.*;
import java.sql.*;
import java.text.*;
-/**
+/*
* This example application demonstrates some of the drivers other features
* by implementing a simple psql replacement in Java.
*
@@ -75,7 +75,7 @@ public class psql
}
- /**
+ /*
* This processes a statement
*/
public void processLine(String line) throws SQLException
@@ -117,7 +117,7 @@ public class psql
}
}
- /**
+ /*
* This displays a result set.
* Note: it closes the result once complete.
*/
@@ -147,7 +147,7 @@ public class psql
rs.close();
}
- /**
+ /*
* This process / commands (for now just /d)
*/
public void processSlashCommand(String line) throws SQLException
@@ -197,7 +197,7 @@ public class psql
private static final String usrSequences[] = {"SEQUENCE"};
private static final String sysTables[] = {"SYSTEM TABLE", "SYSTEM INDEX"};
- /**
+ /*
* Display some instructions on how to run the example
*/
public static void instructions()
@@ -207,7 +207,7 @@ public class psql
System.exit(1);
}
- /**
+ /*
* This little lot starts the test
*/
public static void main(String args[])