Class QueryNew

java.lang.Object
ortus.boxlang.runtime.bifs.BIF
ortus.boxlang.runtime.bifs.global.query.QueryNew

@BoxBIF public class QueryNew extends BIF
  • Constructor Details

    • QueryNew

      public QueryNew()
      Constructor
  • Method Details

    • _invoke

      public Object _invoke(IBoxContext context, ArgumentsScope arguments)
      Return new query based on the provided column list, column types, and/or row data.

      Available column types are:

      • bigint
      • binary
      • bit
      • date
      • decimal
      • double
      • integer
      • null
      • object
      • other
      • time
      • timestamp
      • varchar

      If columnTypeList is empty, all columns will be of type "object".

      Specified by:
      _invoke in class BIF
      Parameters:
      context - The context in which the BIF is being invoked.
      arguments - Argument scope for the BIF.
      Returns:
      The result of the invocation