-
Book Overview & Buying
-
Table Of Contents
Advanced UFT 12 for Test Engineers Cookbook
In the previous recipe, we discussed how to use a UFT DB checkpoint. Here, we will show you how to execute a SQL statement using VBScript code.
We will use the function library DB_Func.vbs as in the previous recipe Establishing and closing a database connection.
In our custom class DB_Handler, we will add a new private m_oRecordset field to hold the results of our query and a new method executeSQLQuery(SQLQuery), which, of course, accepts a string with a valid SQL query as the argument:
Private m_oRecordset
function executeSQLQuery(SQLQuery)
Set m_oRecordset = m_oDBConnection.Execute(SQLQuery)
End FunctionAdditionally, in our Action1 datasheet, we would call the executeSQLQuery(SQLQuery) method by passing our SQL string as the argument:
call oDBHandler.executeSQLQuery(SQLQuery)
As mentioned earlier, the method would store the returned Recordset in the m_oRecordset field. Then, we will be able to perform operations with these...
Change the font size
Change margin width
Change background colour