resolveResultSetToAdd method

ResultSet? resolveResultSetToAdd(
  1. String name
)

Attempts to find a result set that can be added to a scope.

This is used to resolve table references. Usually, after a result set to add has been resolve,d a ResultSetAvailableInStatement is added to the scope and resolveResultSet will find that afterwards.

Implementation

ResultSet? resolveResultSetToAdd(String name) {
  return rootScope.resolveResultSetToAdd(name);
}