Table of Contents

Class TPlsqlCreateFunction

Namespace
gudusoft.gsqlparser.stmt.oracle
Assembly
gudusoft.gsqlparser.dll

This class represents 3 types of SQL statement:

  • Create function statement, creates or replaces a standalone function or a call specification.
  • Declare a function inside a PL/SQL block or package.
  • Define a function inside a PL/SQL block or package.
public class TPlsqlCreateFunction : TCommonStoredProcedureSqlStatement, Visitable
Inheritance
TPlsqlCreateFunction
Implements
Inherited Members

Constructors

TPlsqlCreateFunction(EDbVendor)

public TPlsqlCreateFunction(EDbVendor dbvendor)

Parameters

dbvendor EDbVendor

Properties

CallSpec

call specification @return

public virtual TCallSpec CallSpec { get; set; }

Property Value

TCallSpec

Deterministic

public virtual bool Deterministic { get; set; }

Property Value

bool

FunctionName

The name that you give to the function that you are declaring or defining. @return

public virtual TObjectName FunctionName { get; set; }

Property Value

TObjectName

ImplementionType

public virtual TObjectName ImplementionType { get; set; }

Property Value

TObjectName

InvokerRightsClause

public virtual TInvokerRightsClause InvokerRightsClause { get; set; }

Property Value

TInvokerRightsClause

Kind

Indicates what's kind of SQL statement this class represents for, create function, declare a function or define a function. @return

public virtual int Kind { get; set; }

Property Value

int

ParallelEnableClause

public virtual TParallelEnableClause ParallelEnableClause { get; set; }

Property Value

TParallelEnableClause

ResultCacheClause

public virtual TResultCacheClause ResultCacheClause { get; set; }

Property Value

TResultCacheClause

ReturnDataType

public virtual TTypeName ReturnDataType { get; set; }

Property Value

TTypeName

StoredProcedureName

public override TObjectName StoredProcedureName { get; }

Property Value

TObjectName

Methods

accept(TParseTreeVisitor)

public override void accept(TParseTreeVisitor v)

Parameters

v TParseTreeVisitor

acceptChildren(TParseTreeVisitor)

public override void acceptChildren(TParseTreeVisitor v)

Parameters

v TParseTreeVisitor

doParseStatement(TCustomSqlStatement)

analyze SQL

public override int doParseStatement(TCustomSqlStatement psql)

Parameters

psql TCustomSqlStatement

Returns

int

init(object)

Initialize a query tree node.

public override void init(object arg1)

Parameters

arg1 object