session_name The logical name or description of the database session.
row_index The index of the row written as a string: "# followed by the numeric index. (The first row is always numbered "#0".)
column Either the name of the field in the column, or the index of the column within the database written as a string: "# followed by the numeric
index. (The first column is always numbered "#0".)作者: aswoon911 时间: 2005-10-11 14:34
关于第二个测试 scenario,最好能分解为具体测试需求便于理解作者: suntu 时间: 2005-10-11 15:00
呵呵,看的是中文版,上面没写。。看来还是英文原版的好啊,可惜英文太差,没敢看。
假设一个很简单的存储过程,定义了两个变量,一个字符型,一个整型。
写sql语句:
integer uit;
call p_winrunner_test('0',uit);
然后查看输出是不是预期值。。作者: suntu 时间: 2005-10-11 16:48
db_execute_query这个函数中的sql语句只能是一句吗?如果我想把这段sql语句嵌到此函数中,应该怎么写呢?作者: suntu 时间: 2005-10-11 16:50
就是上面那段
integer uit;
call p_winrunner_test('0',uit);
嵌到db_execute_query函数中该怎么写?
或者不通过这个函数winrunner可以执行这两条sql语句么?作者: suntu 时间: 2005-10-11 17:32
因为uit是一个输出参数,故我最后需要取到uit的值来与预期值进行比较。该怎么做呢?