Example: Creating a Procedure Using PARAMETER STYLE SQL - Advanced SQL Engine - Teradata Database

SQL Data Definition Language Syntax and Examples

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
Published
January 2021
Language
English (United States)
Last Update
2021-01-22
dita:mapPath
ncd1596241368722.ditamap
dita:ditavalPath
hoy1596145193032.ditaval
dita:id
B035-1144
lifecycle
previous
Product Category
Teradata Vantage™

The following CREATE PROCEDURE request installs the external SQL procedure named GetRegionXSP on the Teradata platform:

   CREATE PROCEDURE GetRegionXSP
     (INOUT region VARCHAR(64))
   LANGUAGE C
   NO SQL
   EXTERNAL NAME 'CS!getregion!xspsrc/getregion.c!F!xsp_getregion'
   PARAMETER STYLE SQL;

The only difference between this definition and the definition provided in Example: Creating a Procedure Using PARAMETER STYLE TD_GENERAL is the PARAMETER STYLE declaration: this procedure uses parameter style SQL.

The following excerpt shows the fragment of the C procedure code that declares a parameter style of SQL:

   /*****  C source file name: getregion.c  *****/
   
   #define  SQL_TEXT Latin_Text
   #include "sqltypes_td.h"
   #include <string.h>
   
   void xsp_getregion( VARCHAR_LATIN *region,
                       int           *region_isnull,
                       char           sqlstate[6],
                       SQL_TEXT       extname[129],
                       SQL_TEXT       specific_name[129],
                       SQL_TEXT       error_message[257] )
   {
        …
   }