Class Query

java.lang.Object
net.quasardb.qdb.ts.Query

public final class Query extends Object
Represents a timeseries query. Use this class directly if you're planning on writing complex, custom queries. If your queries are relatively simple, consider using the QueryBuilder instead.
See Also:
  • Constructor Details

    • Query

      protected Query()
    • Query

      protected Query(String query)
  • Method Details

    • create

      public static Query create()
      Creates a new, empty query instance.
    • of

      public static Query of(String query)
      Returns new Query instance based on a string.
      Parameters:
      query - The query string to execute. Refer to the QuasarDB documentation for the full query syntax.
    • execute

      public Result execute(Session session)