Skip to main content

Running stored procedures from QTP

Public Function BIP_sqlRunStoredProcedure (sSProcName, sParameter1, sParameter2, sParameter3)
    ' Create the database object
    Set oADO_CMD = CreateObject(“ADODB.Command”)
   
    'Get connection string
    sConnectionStr = Environment(“SQL_ConnectionStr”)
    ' Activate the connection
    oADO_CMD.ActiveConnection = sConnectionStr
   
    ' Set the command type to Stored Procedures
    oADO_CMD.CommandType = 4
    oADO_CMD.CommandText = sSProcName
   
    ' Define Parameters for the stored procedure
    oADO_CMD.Parameters.Refresh
    ' The order of input output values is the same order as defined in the stored procedure
   
    'Based on the qty of parameters (if any) for this sproc …
    'This maps to the [optional] aspect of the function – not all sprocs have parameters.
    'Note – in the ADO object model / Parameters collection (0) is reserved for the return value; the first parameter therefore is (1).
    If “” <> sParameter1 Then
        ' Pass FIRST input value [optional]
        oADO_CMD.Parameters(1).Value = sParameter1
        'msgbox oADOConnection.Parameters(1).Name +vbcr+ oADOConnection.Parameters(1).Value 'DEBUG
       
        If “” <> sParameter2 Then
            ' Pass SECOND input value [optional]
            oADO_CMD.Parameters(2).Value = sParameter2
            'msgbox oADOConnection.Parameters(2).Name +vbcr+ oADOConnection.Parameters(2).Value 'DEBUG
           
            If “” <> sParameter3 Then
                ' Pass THIRD input value [optional]
                oADO_CMD.Parameters(3).Value = sParameter3
                'msgbox oADOConnection.Parameters(3).Name +vbcr+ oADOConnection.Parameters(3).Value 'DEBUG
            End If
        End If
    End If
   
    ' Execute the stored procedure
    oADO_CMD.Execute()
   
    'Clean up objects
    Set oADO_CMD = Nothing

End Function

Source: Mercury Forum’s KB articles

Comments

Popular posts from this blog

Convert JSON to XML using QTP/UFT/VBScript

Sample Code : Dim strPage,strJSON,objIE strPage = "C:\Jay\JLoader.html" Set objIE = CreateObject("InternetExplorer.Application") objIE.Visible = True objIE.Navigate2 strPage While objIE.Busy : Wend strJSON = "{""FirstName"":""Jay"", ""LastName"":""Krishna""}" Set objWin = objIE.document.parentWindow objWin.execScript "var jsonStr2XML = function(strJSON) { return json2xml(JSON.parse(strJSON));};" Msgbox  oWin.jsonStr2XML(strJSON) objIE.Quit In Detail: Converting The most popular data interchange format JSON(JavaScript Object Notation) to XML using QTP/UFT. Parsing JSON in UFT could be a challenge so we will use JavaScript in UFT to make it perfect. SO We need :              Java Script API  - To Convert JSON to XML                         JavaScript Files :  ...

Customised HTML Result Report for UFT/QTP with ScreenShots in HP ALM TestSet attached.

On   Error   Resume   Next '======================================================================================================================================== 'Module Name            :    GenerateCustomReport.qfl ' Author                    :    Jay 'Date Created            :     13/11/2014 'Description                :     The library contains various functions that are used to generate a Custom HTML report '======================================================================================================================================== 'Project/Test Specific Variables ...

How to Read or Select Context Menu or Right Click Menu using QTP.

Select The Item in Right Click Menu or Context Menu: Window("sampleWindow").WinMenu("MenuObjType:=1).Select"File;New" Here MenuObjtype can be 1 r 2 r 3 .......n Check wether the Item is Exist or Not: If Window("sampleWindow").WinMenu("MenuObjType:=1).GetItemProperty("1","Exist") Then   Msgbox"Exist" Else  Msgbox"Does Not Exist" End If                                         Or If Window("sampleWindow").WinMenu("MenuObjType:=1).GetItemProperty("File","Exist") Then   Msgbox"Exist" Else  Msgbox"Does Not Exist" End If Get the Items in Context Menu: For i = 1 to 10 Print  Window("sampleWindow").WinMenu("MenuObjType:=" & i).GetItemProperty("1","Label") Then Next

How to convert Excel column numbers into alphabetical characters

 The ConvertToLetter function works by using the following algorithm: Divide the column number by 27, and then put the resulting integer in the variable "i". Subtract the column number from "i" multiplied by 26, and then put the result in the variable "j". Convert the integer values into their corresponding alphabetical characters, "i" and "j" will range from 0 to 26 respectively. For example: The column number is 30. The column number is divided by 27: 30 / 27 = 1.1111, rounded down by the Int function to "1". i = 1 Next Column number - (i * 26) = 30 -(1 * 26) = 30 - 26 = 4. j = 4 Convert the values to alphabetical characters separately, i = 1 = "A" j = 4 = "D" Combined together, they form the column designator "AD". The following VBA function is just one way to convert column number values into their equivalent alphabetical charac...

How To open Password Protected Excel sheets using Vb Script

Function UnprotectXL(filePath,fileName,pwd,writeresPwd)    Set objExcel=CreateObject(“Excel.Application”)    objExcel.Visible=false    testData=filePath&”\”&fileName    Set oWorkbook=objExcel.Workbooks    Set myWkbook=objExcel.Workbooks.open (testData,0,False,5,pwd,writeresPwd)    objExcel.DisplayAlerts=False    oWorkbook(fileName).Activate    For Each w in objExcel.Workbooks         w.SaveAs testData,,”",”"          Next    objExcel.Workbooks.Close    objExcel.Quit    Set oWorkbook=Nothing    Set objExcel=Nothing   End Function Function ProtectXL(filePath,fileName,pwd,writeresPwd)      On Error Resume Next      Set objExcel=CreateObject(“Excel.Application”)      objExcel.Visible=False      testData=filePath...