Skip to main content

SqlName (Method Keyword)

Overrides the default name of the projected SQL stored procedure. Applies only if this method is projected as an SQL stored procedure.

Usage

To override the default name used when the method is projected as an SQL stored procedure, use the following syntax:

ClassMethod name(formal_spec) As returnclass [ SqlProc, SqlName = sqlname ] 
{    //implementation }

Where sqlname is an SQL identifier.

Details

If this method is projected as an SQL stored procedure, then this name is used as the name of the stored procedure.

Default

If you omit this keyword, InterSystems IRIS determines the SQL name as follows:

CLASSNAME_METHODNAME

This default uses uppercase letters. You can use any case when you invoke the stored procedure, however, because SQL is case-insensitive.

Thus, in the following example, the default SQL name value is TEST1_PROC1. This default value is specified in the SELECT statement:

Class User.Test1 Extends %Persistent
{
ClassMethod Proc1(BO,SUM) As %INTEGER [ SqlProc ]
{
   ///definition not shown
}

Query Q1(KD As %String,P1 As %String,P2 As %String) As %SqlQuery
{
  SELECT SUM(SQLUser.TEST1_PROC1(1,2)) AS Sumd
  FROM SQLUser.Test1
}
}

See Also

FeedbackOpens in a new tab