DocBook|Search
Class Reference
%WebStress.Results.General
   
Server:basexml
Instance:SOAXML
User:UnknownUser
 
-
  [BASEXML] >  [%WebStress] >  [Results] >  [General]
Private  Storage  

persistent class %WebStress.Results.General extends %Persistent, %XML.Adaptor

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
10 3 1


Summary

Properties
CoolDownTime Generator PrepareTime RecordTime RunDescription
RunID StoppedTime StoppingTime TestID WarmUpTime

Methods
%%OIDGet %AddToSaveSet %AddToSyncSet %BMEBuilt
%BuildIndices %CheckUnique %ClassIsLatestVersion %ClassName
%ComposeOid %ConstructClone %Delete %DeleteExtent
%DeleteId %DispatchClassMethod %DispatchGetModified %DispatchGetProperty
%DispatchMethod %DispatchSetModified %DispatchSetMultidimProperty %DispatchSetProperty
%Exists %ExistsId %Extends %GUID
%GUIDSet %GetLock %GetParameter %GetSwizzleObject
%Id %InsertBatch %IsA %IsModified
%KillExtent %KillExtentData %LoadFromMemory %LockExtent
%LockId %New %NormalizeObject %ObjectModified
%Oid %OnBeforeAddToSync %OnDetermineClass %Open
%OpenId %OriginalNamespace %PackageName %PhysicalAddress
%PurgeIndices %Reload %RemoveFromSaveSet %ResolveConcurrencyConflict
%RollBack %Save %SaveDirect %SaveIndices
%SerializeObject %SetModified %SortBegin %SortEnd
%SyncObjectIn %SyncTransport %UnlockExtent %UnlockId
%ValidateObject XMLDTD XMLExport XMLExportToStream
XMLExportToString XMLNew XMLSchema XMLSchemaNamespace
XMLSchemaType


Properties

• property CoolDownTime as %String(TRUNCATE=1);
• property Generator as %String(TRUNCATE=1);
• property PrepareTime as %String(TRUNCATE=1);
• property RecordTime as %String(TRUNCATE=1);
• property RunDescription as %String(TRUNCATE=1);
• property RunID as %Integer;
• property StoppedTime as %String(TRUNCATE=1);
• property StoppingTime as %String(TRUNCATE=1);
• property TestID as %String(TRUNCATE=1);
• property WarmUpTime as %String(TRUNCATE=1);

Queries

• query GetGenerators(testID As %String, runID As %Integer)
SQL Query :
SELECT DISTINCT Generator,PrepareTime,WarmUpTime,RecordTime,CoolDownTime,StoppingTime,StoppedTime,RunDescription
FROM %WebStress_Results.General
WHERE TestID = :testID and RunID = :runID
ORDER BY Generator
• query GetRuns(testID As %String)
SQL Query :
SELECT DISTINCT RunID,Generator,PrepareTime,WarmUpTime,RecordTime,CoolDownTime,StoppingTime,StoppedTime,RunDescription
FROM %WebStress_Results.General
GROUP BY RunID
HAVING TestID = :testID
ORDER BY RunID DESC
• query GetTests()
SQL Query :
SELECT DISTINCT TestID,Tests.Name
FROM %WebStress_Results.General General, %WebStress.Tests Tests
WHERE General.TestID = Tests.ID
ORDER BY Tests.Name

Indices

• index (Main on TestID,RunID,Generator) [IdKey,PrimaryKey,Unique];