Scripts

A SQL script consists of one or more SQL statements not returning any data. For example, there are properties allowing you to execute SQL statements during initialization (pre-processing) of a component or after completion (post-processing) of the project.

Some considerations:

Example of a SQL script:

DELETE FROM products;
UPDATE customers 
SET cu_desc = 'valid';