Calls the specified sql stored procedure and returns a dataset of the result


Namespace: ctAC
Assembly: ctAC (in ctAC.dll)

Syntax

Visual Basic (Declaration)
<WebMethodAttribute(Description := "Custom SQL Call.", MessageName := "customSQLCall"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

Public Function customSQLCall( _ 
   ByVal sqlCall As String,  _ 
   ByVal inParms As nameValuePairs(),  _ 
   ByVal checkSum As String _ 
) As DataSet
C#
[WebMethodAttribute(Description = "Custom SQL Call.", MessageName = "customSQLCall")]
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
public DataSet customSQLCall(
   string sqlCall,
   nameValuePairs[] inParms,
   string checkSum
)
C++
[WebMethodAttribute(Description = L"Custom SQL Call.", MessageName = L"customSQLCall")]
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
public:
 DataSet customSQLCall(
   String sqlCall,
   array<nameValuePairs>^ inParms,
   String checkSum
) sealed 
J#
/** @attribute WebMethodAttribute(Description = "Custom SQL Call.", MessageName = "customSQLCall") */
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
public DataSet customSQLCall(
   string sqlCall,
   nameValuePairs[] inParms,
   string checkSum
)
JScript
public 

   WebMethodAttribute(Description = "Custom SQL Call.", MessageName = "customSQLCall")
   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
function customSQLCall(
   sqlCall : String,
   inParms : nameValuePairs[],
   checkSum : String
) : DataSet

Parameters

sqlCall
inParms
checkSum

See Also