51Testing软件测试论坛

标题: Robot代码解析 [打印本页]

作者: tongfenglcz    时间: 2005-8-2 15:48
标题: Robot代码解析
请帮我分析一下下面的代码,不是很明白!!!
Sub main
' Declarations
'
    Dim outputStr As String '请问这里定义的变量是干什么啊?
    Dim connection As Long  
    Dim prompt As Integer  '请问这里的prompt是什么意思?
    Dim datasources(1 To 6,1 to 9) As Variant  '这又指什么呢?
    Dim retcode As Variant  '这是干嘛的?
   
    Dim iProcColumns As Integer
    Dim iProcRows As Integer
    Dim iProcRowCount As Integer
    Dim iProcColumnCount As Integer
    Dim sFunctionCall As String

    prompt = 2 ’为什么是2?什么意思?
    connection = SQLOpen("DSN=RationalTest", outputStr, prompt:=2)
    retcode = SQLExecQuery(connection:=connection,query:="select * from product ")
    retcode = SQLRetrieve(connection,datasources())
   
    For iProcRowCount = 1 to 10
      .
        For iProcColumnCount = 1 to 6
                  sFunctionCall = datasources(iProcRowCount, iProcColumnCount)
        Next iProcColumnCount


    Next iProcRowCount
    retcode = SQLClose(connection)


End Sub
作者: tongfenglcz    时间: 2005-8-2 15:52
robot自带的例子从那儿看啊?我怎么没有发现robot自带例子
谢谢!!!
作者: 司空公子    时间: 2005-8-4 10:23
你应该看一下帮助,看看SQLOpen,SQLExecQuery,SQLRetrieve这些函数的定义,看看他们的参数都是什么含义
作者: DontTest    时间: 2005-8-18 11:31
Robot中,打开一个script,然后在任意地方点一下,按 F1




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2