Uses of Class
com.omnipilot.lassopro.LassoValue

Uses of LassoValue in com.omnipilot.lassopro
 

Methods in com.omnipilot.lassopro with parameters of type LassoValue
 int LassoCall.getRequestParam(int key, LassoValue outParam)
          Fetches a request-specific variable.
 int LassoCall.getLassoParam(int key, LassoValue outParam)
          Fetches an internal server-specific variable.
 int LassoCall.getTagName(LassoValue outName)
          Fetches the name of the tag that triggered this call.
 int LassoCall.getTagParam(int paramIndex, LassoValue outParam)
          Fetches the indicated parameter that was sent to the tag.
 int LassoCall.findTagParam(java.lang.String paramName, LassoValue outParam)
          Finds and fetches a tag param by name.
 int LassoCall.getResultHeader(LassoValue outHeader)
          Allows access to the result (HTTP) header.
 int LassoCall.getCookieValue(java.lang.String named, LassoValue outValue)
          Retrieves a cookie value set by the client.
 int LassoCall.getVariable(java.lang.String named, int index, LassoValue outValue)
          Deprecated.  
 int LassoCall.getDataSourceName(LassoValue outName, IntValue outUseHostDefault, LassoValue outUsernamePassword)
          Gets the currently specified database name and associated data.
 int LassoCall.getTableName(LassoValue outName)
          Gets the currently specified table name.
 int LassoCall.getSchemaName(LassoValue outName)
          Gets the currently specified schema name.
 int LassoCall.getDataHost(LassoValue outHost, LassoValue outUsernamePassword)
          Returns the host that maintains the current database.
 int LassoCall.getDataHost(LassoValue outHost, LassoValue outDefaultSchema, LassoValue outUsernamePassword)
          Returns the host that maintains the current database.
 int LassoCall.getPrimaryKeyColumn(LassoValue outColumn)
          Gets the name and the value of the currently specified primary key column.
 int LassoCall.getPrimaryKeyColumn2(int index, LassoValue outColumn)
          Gets the name and the value of the indexed primary key column.
 int LassoCall.getInputColumn(int index, LassoValue outColumn)
          Gets an individual input column by index.
 int LassoCall.getSortColumn(int index, LassoValue outColumn)
          Gets an individual sort column by index.
 int LassoCall.findInputColumn(java.lang.String named, LassoValue outColumn)
          Gets an individual input column by name.
 int LassoCall.getReturnColumn(int index, LassoValue outColumn)
          Gets an individual return column by index.
 int LassoCall.getDataSourceModuleName(LassoValue outName)
          Returns the name the current datasource module was registered with.
 int LassoCall.formatBuffer(java.lang.String buffer, LassoValue outResult)
          Formats the supplied buffer and puts the resulting data in the data field of the LassoValue.
 int LassoCall.includeRaw(java.lang.String filePath, LassoValue out)
          Works just like the include tag.
 int LassoCall.storeGetData(java.lang.String key, LassoValue outValue)
          Fetches data that has been stored.
 int LassoCall.typeGetString(LassoTypeRef type, LassoValue outValue)
          Retrieves character data from a type instance.
 int LassoCall.typename(LassoTypeRef target, LassoValue outName)
          Retrieves the name of the target type.
 int LassoCall.typeGetName(LassoTypeRef target, LassoValue outName)
          Returns the name of the target type.
 int LassoCall.tagGetReturnType(LassoTypeRef inTagType, LassoValue outResult)
          Provides access to tag parameters as specified by the -returntype keyword
 int LassoCall.tagGetExpectedParam(LassoTypeRef inTagType, int index, LassoValue outResult, IntValue outRequired)
          Provides access to indexed tag parameter
 int LassoDSModule.DS_METHOD_PROTOTYPE(LassoCall lasso, int action, LassoValue data)
          A prototype for all datasource methods registered by registerDSModule.