From: ###@###.### Sat May 10 09:55:31 1997
To: ###@###.###
Subject: Typo
Going to the 'Getting Started' pages for the JDBC in the Statement page URL
as follows:
http://www.javasoft.com:80/products/jdk/1.1/docs/guide/jdbc/getstart/statement.doc.html#999770
There is the following which has imbalanced quotes:
ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM Table2);
It should be
ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM Table2");
Hope this helps,
Dan Joshi
To: ###@###.###
Subject: Typo
Going to the 'Getting Started' pages for the JDBC in the Statement page URL
as follows:
http://www.javasoft.com:80/products/jdk/1.1/docs/guide/jdbc/getstart/statement.doc.html#999770
There is the following which has imbalanced quotes:
ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM Table2);
It should be
ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM Table2");
Hope this helps,
Dan Joshi