SóProvas


ID
709357
Banca
FCC
Órgão
MPE-PE
Ano
2012
Provas
Disciplina
Programação
Assuntos

Na linguagem Java, o método executeQuery da interface Statement, envia uma instrução SQL select para o banco de dados e retorna, se a consulta for válida e uma conexão estiver estabelecida, um ou mais registros em um objeto da interface:

Alternativas
Comentários
  • O ResultSet, objeto responsável por manipular os dados obtidos da execução de uma query.
  • boolean execute()
    Executes the SQL statement in this PreparedStatement object, which may be any kind of SQL statement.

    ResultSet executeQuery()
    Executes the SQL query in this PreparedStatement object and returns the ResultSet object generated by the query.

    int executeUpdate()
    Executes the SQL statement in this PreparedStatement object, which must be an SQL INSERT, UPDATE or DELETE statement; or an SQL statement that returns nothing, such as a DDL statement.