تحرير

executeQuery Method (SQLServerStatement)

Download JDBC driver

Runs the given SQL statement and returns a single SQLServerResultSet object.

Syntax

  
public java.sql.ResultSet executeQuery(java.lang.String sql)  

Parameters

sql

A String that contains a SQL statement.

Return Value

A SQLServerResultSet object.

Exceptions

SQLServerException

Remarks

This executeQuery method is specified by the executeQuery method in the java.sql.Statement interface.

SQLServerException is thrown if the given SQL statement produces anything other than a single SQLServerResultSet object.

If executing a stored procedure results in an update count that is greater than one, or that generates more than one result set, use the execute method to execute the stored procedure.