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

Gets the sql from the database and execute it with the given arguments for a particular group.

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

Syntax

C#
public DataSet GetReportData(
	int groupId,
	int reportId,
	string arg1,
	string arg2,
	string arg3,
	string arg4,
	ref string path,
	ref string name,
	string reportDiskPath
)
Visual Basic (Declaration)
Public Function GetReportData ( _
	groupId As Integer, _
	reportId As Integer, _
	arg1 As String, _
	arg2 As String, _
	arg3 As String, _
	arg4 As String, _
	ByRef path As String, _
	ByRef name As String, _
	reportDiskPath As String _
) As DataSet
Visual C++
public:
DataSet^ GetReportData(
	int groupId, 
	int reportId, 
	String^ arg1, 
	String^ arg2, 
	String^ arg3, 
	String^ arg4, 
	String^% path, 
	String^% name, 
	String^ reportDiskPath
)

Parameters

groupId
Type: System..::.Int32
The unique id for the group.
reportId
Type: System..::.Int32
The report Id.
arg1
Type: System..::.String
The first argument.
arg2
Type: System..::.String
The second argument.
arg3
Type: System..::.String
The third argument.
arg4
Type: System..::.String
The fourth argument.
path
Type: System..::.String%
The path of the report file.
name
Type: System..::.String%
The name of the report file.
reportDiskPath
Type: System..::.String
The path of the report on the disk

Return Value

DataSet corresponding to the report. To determine the columns returned in the DataTables of the DataSet, please refer to sql queries specified in the reports.xml resource file.

See Also