The IDataTable interface provides script functionality to allow direct control over a named Data Table by a Virtual User.
Namespace: Facilita.Fc.RuntimeAssembly: fc_clr (in fc_clr.dll) Version: 9.5.7.98
Syntax
public interface IDataTable : IDataDictionary, IEnumerator
Remarks
Examples
// obtain a named Data Table IDataTable dt = GetDataTable("actors.txt"); // loop through all rows in the Data Table while (dt.MoveNext()) { // write out to the event log the current value of the column 'surname' WriteMessage("Surname: " + dt.GetString("surname")); } WriteMessage("No more rows");
See Also