[This is preliminary documentation and is subject to change.]

Gets the tracker history for display on the screen.

Namespace:  OfficeClip.DBLayer.Tracker
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public SqlDataReader GetHistory(
	int caseId,
	int showNum
)
Visual Basic (Declaration)
Public Function GetHistory ( _
	caseId As Integer, _
	showNum As Integer _
) As SqlDataReader
Visual C++
public:
SqlDataReader^ GetHistory(
	int caseId, 
	int showNum
)

Parameters

caseId
Type: System..::.Int32
The database identifier of the case.
showNum
Type: System..::.Int32
shows how many lines need to be shown at the output

Return Value

Returns the sqldatareader consisting of the following columns:
  • nameUser Name in lastname, first name format
  • columnNameThe name of the column
  • finalValueThe field value
  • chDateThe change date

See Also