Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
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.