Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
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.