TIBCO Data Virtualization® Adapter Online Help > TDV Email Adapter > SQL Compliance
 
SQL Compliance
The Email Adapter supports several operations on data, including querying, deleting, modifying, and inserting.
SELECT Statements
See SELECT Statements for a syntax reference and examples.
SeeData Modelfor information on the capabilities of the Email API.
INSERT Statements
See INSERT Statements for a syntax reference and examples, as well as retrieving the new records' Ids.
UPDATE Statements
The primary key Id is required to update a record. See UPDATE Statements for a syntax reference and examples.
DELETE Statements
The primary key Id is required to delete a record. See DELETE Statements for a syntax reference and examples.
REPLICATE Statements
REPLICATE statements allow high-level control over caching and incremental updates. For a syntax reference and examples, see REPLICATE Statements.
You can also incrementally update a cache automatically; see AutoCache for more information.
EXECUTE Statements
Use EXECUTE or EXEC statements to execute stored procedures. See EXECUTE Statementsfor a syntax reference and examples.
Names and Quoting
Table and column names are considered identifier names; as such, they are restricted to the following characters: [A-Za-z0-9_:@].
To use a table or column name with characters not listed above, the name must be quoted using double quotes ("name") in any SQL statement.
Strings must be quoted using single quotes (e.g., 'John Doe').
Transactions and Batching
Transactions are not currently supported.
Additionally, the adapter does not support batching of SQL statements. To execute multiple commands, you can create multiple instances and execute each separately.