_________ is the set of records that are retrieved after execution of SQL query over an established database connection.
(A) sqlresult
(B) resultset
(C) table
(D) tuple
Answer:
Checking the options
- (A) sqlresult - It is not a valid term related to SQL.
- (B) resultset - It refers to the logical set of records that are fetched from the database when executing an SQL query.
- (C) table - It refers to a database object that contains all the data in the table in the form of rows and columns.
- (D) tuple - It refers to a single row of a table in an SQL database.
From the options given above, resultset refers to the set of records that are retrieved after execution of SQL query over an established database connection.
So, the correct answer is (B)