We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7092403 commit 0a65f96Copy full SHA for 0a65f96
java/jdbc/ConnectionManagementSamples/InternalT4Driver.java
@@ -67,7 +67,7 @@ static public void printEmployees(Connection connection) throws SQLException {
67
Statement statement = null;
68
try {
69
statement = connection.createStatement();
70
- resultSet = statement.executeQuery("SELECT employee_id, first_name FROM"+
+ resultSet = statement.executeQuery("SELECT employee_id, first_name FROM "+
71
"employees order by employee_id");
72
while (resultSet.next()) {
73
System.out.println("Emp no: " + resultSet.getInt(1) + " Emp name: "
0 commit comments