• Matéria: Informática
  • Autor: franlevitag12
  • Perguntado 4 anos atrás

Observe a linha de comando a seguir.



Statement st = Conexao.getConection().createStatement();



Indique qual deve ser o comando seguinte:


List< Aluno > ls = st.prepareStatement("select * from ALUNOS");


List< Aluno > ls = st.executeQuery("select * from ALUNOS");


ResultSet rs = st.executeUpdate("select * from ALUNOS");


ResultSet rs = st.executeQuery("select * from ALUNOS");


List ls = st().executeUpdate("select * from ALUNOS");

Respostas

respondido por: amaquina900
50

Resposta:

ResultSet rs = st.executeQuery("select * from ALUNOS");

Explicação:

gabarito

respondido por: douglas03rafael
15

Resposta:

ResultSet rs = st.executeQuery("select * from ALUNOS");

Explicação:

ResultSet rs = st.executeQuery("select * from ALUNOS");

Perguntas similares