Interface QueryInfo


public interface QueryInfo
Information about a SQL query. Implementations are engine-specific.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the engine name for this query, matching the JSON "engine" property.
    Returns the execution ID for this query.
    Returns the state of this query, which may be an engine-specific string.
  • Method Details

    • engine

      String engine()
      Returns the engine name for this query, matching the JSON "engine" property.
    • state

      String state()
      Returns the state of this query, which may be an engine-specific string. Standard strings are in StandardQueryState, although engines can use additional strings if they like.
    • executionId

      String executionId()
      Returns the execution ID for this query. This is the system-generated ID used internally, such as the dartQueryId for Dart queries.