Database Tables
Working with database tables is an integral part of using databases with your testing. Use table expressions and database table properties to access database table contents and manipulate them.
SenseTalk can interact directly with databases and excel files as documented in the following sections. However, if you prefer to manipulate your data using SQL, see Executing SQL Directly.
Table Expressions
In order to manipulate data in your database, you must specify a table to work with by its name. This is done using a Table expression. A database connection must also be defined. For information on how to define a connection to a database, see Database Connections.
Using a table expression establishes the connection to the database if necessary, and collects information about the table, but doesn't fetch any data from the table. Data is fetched when records of the table are requested.
The is a table
operator can be used at any time to verify that what you are working with is in fact a table.
Table Expression
Behavior: A Table expression allows you to reference a table in a database using SenseTalk. There are two different ways to use a table expression: Directly and by storing it in a variable.
Syntax:
table tableName [of | in | from] {database} dbIdentifier {{with} properties}