Table of Contents

Method FillArrayNoDelete

Namespace
Skyline.DataMiner.Scripting
Assembly
SLManagedScripting.dll

FillArrayNoDelete(SLProtocol, int, List<object[]>)

Adds the provided rows to the specified table.

[Obsolete("Use protocol.FillArray instead", false)]
public static object FillArrayNoDelete(SLProtocol protocol, int tableId, List<object[]> columns)

Parameters

protocol SLProtocol

Instance that implements SLProtocol.

tableId int

The ID of the table parameter.

columns List<object[]>

The columns of the table.

Returns

object

Remarks

  • This overload is currently not supported.
  • This method acts as a wrapper for a NotifyProtocol type 194 call NT_FILL_ARRAY_NO_DELETE.
  • In case the column data contains null references, the corresponding cells will be cleared.
  • The FillArrayNoDelete method cannot be used together with the "autoincrement" column type.
  • This call is to be used with columns of type "retrieved". In case other column types are present between the specified columns (e.g. columns of type "custom"), these other columns will be skipped.

FillArrayNoDelete(SLProtocol, int, List<object[]>, DateTime?)

Adds the provided rows to the specified table.

[Obsolete("Use protocol.FillArray instead", false)]
public static object FillArrayNoDelete(SLProtocol protocol, int tableId, List<object[]> columns, DateTime? timeInfo)

Parameters

protocol SLProtocol

Instance that implements SLProtocol.

tableId int

The ID of the table parameter.

columns List<object[]>

The columns of the table.

timeInfo DateTime?

Timestamp

Returns

object

Remarks

  • This overload is currently not supported.
  • This method acts as a wrapper for a NotifyProtocol type 194 call NT_FILL_ARRAY_NO_DELETE.
  • In case the column data contains null references, the corresponding cells will be cleared.
  • The FillArrayNoDelete method cannot be used together with the "autoincrement" column type.
  • This call is to be used with columns of type "retrieved". In case other column types are present between the specified columns (e.g. columns of type "custom"), these other columns will be skipped.
  • From DataMiner 10.2.9 onwards (RN 33849), if the DateTime.Kind property of timeInfo is unspecified, the timestamp will be handled as local time.

FillArrayNoDelete(SLProtocol, int, object[])

Adds the provided rows to the specified table.

[Obsolete("Use protocol.FillArray instead", false)]
public static object FillArrayNoDelete(SLProtocol protocol, int tableId, object[] columns)

Parameters

protocol SLProtocol

Instance that implements SLProtocol.

tableId int

The ID of the table parameter.

columns object[]

The columns of the table.

Returns

object

Remarks

  • This method acts as a wrapper for a NotifyProtocol type 194 call NT_FILL_ARRAY_NO_DELETE.
  • In case the column data contains null references, the corresponding cells will be cleared.
  • The FillArrayNoDelete method cannot be used together with the "autoincrement" column type.
  • This call is to be used with columns of type "retrieved". In case other column types are present between the specified columns (e.g. columns of type "custom"), these other columns will be skipped.

FillArrayNoDelete(SLProtocol, int, object[], DateTime?)

Adds the provided rows to the specified table.

[Obsolete("Use protocol.FillArray instead", false)]
public static object FillArrayNoDelete(SLProtocol protocol, int tableId, object[] columns, DateTime? timeInfo)

Parameters

protocol SLProtocol

Instance that implements SLProtocol.

tableId int

The ID of the table parameter.

columns object[]

The columns of the table.

timeInfo DateTime?

Timestamp

Returns

object

Remarks

  • This method acts as a wrapper for a NotifyProtocol type 194 call NT_FILL_ARRAY_NO_DELETE.
  • In case the column data contains null references, the corresponding cells will be cleared.
  • The FillArrayNoDelete method cannot be used together with the "autoincrement" column type.
  • This call is to be used with columns of type "retrieved". In case other column types are present between the specified columns (e.g. columns of type "custom"), these other columns will be skipped.
  • From DataMiner 10.2.9 onwards (RN 33849), if the DateTime.Kind property of timeInfo is unspecified, the timestamp will be handled as local time.