Informix Create Function

The Informix Create Function Tool allows users to create stored Functions for a database. The following example is output for Informix.

CREATE FUNCTION sample:test_function (param1 char(25), param2 date, param3 decimal) RETURNING char; --insert function body here END FUNCTION

Informix Create Function