Informática, perguntado por franlevitag12, 6 meses 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");

Soluções para a tarefa

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 interessantes