How to convert the string of the variable fg
to an integer?
if (connectionIsOpened)
{
String s = "INSERT INTO jogador(nome) VALUES " + "('" + this.playerName + "'" + ")";
connection.executeUpdate(s);
String fg = "SELECT cod_jogador FROM jogador WHERE jogador.nome = " + "'" + this.playerName + "'"; //buscar cod_jogador onde nome_jogador = this.playerName
connection.executeQuery(fg);
int gh = Integer.parseInt(fg);
String a ="INSERT INTO 'jogos'( 'cod_jogador', 'pontuacao') VALUES " + "(" + gh + "," + this.points + ")"; //Inserir cod_jogador e pontuação onde nome_jogador = this.playernames
connection.executeUpdate(a);
connection.close();
}