Table of Contents

Method AddRowReturnKey

Namespace
Skyline.DataMiner.Scripting
Assembly
QActionHelperBaseClasses.dll

AddRowReturnKey()

Adds a row to the table and returns the primary key of the new row.

public string AddRowReturnKey()

Returns

string

The primary key of the added row.

AddRowReturnKey(DateTime?)

Adds a row to the table and returns the primary key of the new row.

public string AddRowReturnKey(DateTime? timeInfo)

Parameters

timeInfo DateTime?

Timestamp.

Returns

string

The primary key of the added row.

Remarks

  • This overload is supported from DataMiner 10.4.2 onwards (RN 38153).

AddRowReturnKey(QActionTableRow)

Adds a row to the table and returns the primary key of the new row.

public string AddRowReturnKey(QActionTableRow row)

Parameters

row QActionTableRow

The row data.

Returns

string

The primary key of the added row.

AddRowReturnKey(QActionTableRow, DateTime?)

Adds a row to the table and returns the primary key of the new row.

public string AddRowReturnKey(QActionTableRow row, DateTime? timeInfo)

Parameters

row QActionTableRow

The row data.

timeInfo DateTime?

Timestamp.

Returns

string

The primary key of the added row.

Remarks

  • This overload is supported from DataMiner 10.4.2 onwards (RN 38153).

AddRowReturnKey(object[])

Adds a row to the table and returns the primary key of the new row.

public string AddRowReturnKey(object[] row)

Parameters

row object[]

The row data.

Returns

string

The primary key of the added row.

AddRowReturnKey(object[], DateTime?)

Adds a row to the table and returns the primary key of the new row.

public string AddRowReturnKey(object[] row, DateTime? timeInfo)

Parameters

row object[]

The row data.

timeInfo DateTime?

Timestamp.

Returns

string

The primary key of the added row.

Remarks

  • This overload is supported from DataMiner 10.4.2 onwards (RN 38153).