Dynamic SQL management Explains how to execute and manage SQL statements at runtime. Understanding dynamic SQLThis is an introduction to dynamic SQL programming.PREPARE (SQL statement)Prepares an SQL statement for execution.EXECUTE (SQL statement)This instruction runs an SQL statement previously prepared.FREE (SQL statement)Releases the resources allocated to a prepared statement.EXECUTE IMMEDIATEPerforms a simple SQL execution without SQL parameters or result set.The base.SQLHandle built-in classHandle SQL queries with a 3GL API.fglhint_* SQL commentsUsing special SQL comment hints to control statement execution.