class Batchly::Request::DbRequest

DbRequest is a type of request that supports relational data sources Request holds the base data and source connection string

Attributes

connection_string[RW]

connection string string

content_path[RW]

Path for loading additional content - Path to container from where code is executed string

data[RW]

dataset of data required to process unit of work. hashTable If the configured query returns multiple record sets, each record set is a table within the dataset.

id[RW]

id for the Unit of Work string

parameters[RW]

Values for parameters configured via UI hashTable

Public Class Methods

new(id = nil, parameters = nil, connection_string = nil, data = nil, content_path = nil) click to toggle source
# File lib/batchly-sdk/request/db_request.rb, line 11
def initialize(id = nil, parameters = nil, connection_string = nil, data = nil, content_path = nil)
  @id = id
  @parameters = parameters
  @connection_string = connection_string
  @data = data
  @content_path = content_path
end