J
G
Programista Php,
Supremum SEO Sp. z
o.o.
Temat: cześć mam pytanie :)
Tu jest fragment koduprivate String PobierzPierszyLink(Connection conn) throws SQLException {
String query = "select min(id) as firstid from Linki";
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery(query);
int id = -1;
if (rs.next()) {
id = rs.getInt("firstid");
} else {
return null;
}
query = "select Count(Link) from odwiedzone";
stmt = conn.createStatement();
rs = stmt.executeQuery(query);
int i=0;
int x = Integer.parseInt(query);
System.out.println(x);
for (i=0;i<x;i++)
chodzi mi o to , że wyskakuje mi błąd
Wystapil wyjatekjava.lang.NumberFormatException: For input string: "select Count(Link) from odwiedzone"
wiecie może jak się z tym uporać :)