We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e071c9 commit 66ad0a9Copy full SHA for 66ad0a9
sqldeveloper/extension/java/ConnectionHelperClient/src/ConnectionHelperClient.java
@@ -53,8 +53,14 @@ public static void main(String[] args) {
53
new InputStreamReader(svrSocket.getInputStream()));
54
) {
55
out.println(connectionInfo);
56
- System.out.println(in.readLine()); // TODO: What kind of responses do we want?
57
- } catch (UnknownHostException e) {
+ for (;;) {
+ String line = in.readLine();
58
+ if (line == null) {
59
+ break;
60
+ }
61
+ System.out.println(line);
62
63
+ } catch (UnknownHostException e) {
64
System.err.println("Don't know about host " + localhost);
65
System.exit(1);
66
} catch (IOException e) {
0 commit comments