Class EjscriptDebugTableInfo
Table 'ejscript_debug': This table contains information when debugging an ejscript
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("ejscript_debug")]
public class EjscriptDebugTableInfo : TableInfo, ICloneable
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling
Fields
DictionaryTableName
Conceptual name of table EjscriptDebug in the database dictionary: ejscript_debug
Declaration
public const string DictionaryTableName = "ejscript_debug"
Field Value
Type | Description |
---|---|
System.String |
Properties
CodeLinePos
Field 'code_line_pos' in table 'ejscript_debug': Dictionary type Int, .NET type: System.Int32
The current line position in the code.
Declaration
public Int32FieldInfo CodeLinePos { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
CodeRunUntil
Field 'code_run_until' in table 'ejscript_debug': Dictionary type Int, .NET type: System.Int32
The line to run to in debug mode.
Declaration
public Int32FieldInfo CodeRunUntil { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
CodeView
Field 'code_view' in table 'ejscript_debug': Dictionary type Clob, .NET type: System.String
The chunk of code around the breakpoint
Declaration
public StringFieldInfo CodeView { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
DebugId
Field 'debug_id' in table 'ejscript_debug': Dictionary type String[256], .NET type: System.String
The debugId for the session
Declaration
public StringFieldInfo DebugId { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Definition
Definition of the table as described in the deployed runtime dictionary
Declaration
public override SoTable Definition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Overrides
DictionaryTableNumber
Table number for table EjscriptDebug in the database dictionary; potentially changes between databases, but always the same over the lifetime of any single database
Declaration
public int DictionaryTableNumber { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
EjscriptDebugId
Field 'id' in table 'ejscript_debug': Dictionary type PK, .NET type: System.Int32
Primary key
Declaration
public Int32FieldInfo EjscriptDebugId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Info
Field 'info' in table 'ejscript_debug': Dictionary type Clob, .NET type: System.String
Information saved by the running script
Declaration
public StringFieldInfo Info { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
RuntimeDefinition
Definition of the table as described in the deployed runtime dictionary
Declaration
public static SoTable RuntimeDefinition { get; }
Property Value
Type | Description |
---|---|
SoTable |
SkipCount
Field 'skip_count' in table 'ejscript_debug': Dictionary type Int, .NET type: System.Int32
The number of wait-statements to skip.
Declaration
public Int32FieldInfo SkipCount { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
StartedAt
Field 'started_at' in table 'ejscript_debug': Dictionary type DateTime, .NET type: System.DateTime
The timestamp of when the debug session was initiated.
Declaration
public DateTimeFieldInfo StartedAt { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
Status
Field 'status' in table 'ejscript_debug': Dictionary type Enum, .NET type: System.Int16
The current status of this debug session. See EjscriptDebug
Declaration
public UInt16FieldInfo Status { get; }
Property Value
Type | Description |
---|---|
UInt16FieldInfo |
VariableView
Field 'variable_view' in table 'ejscript_debug': Dictionary type Clob, .NET type: System.String
A dump of all variables
Declaration
public StringFieldInfo VariableView { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |