Package wsatools :: Package DbConnect :: Module Schema :: Class Function
[hide private]

Class Function

source code


A database stored function schema. Simply consists of name, argument list and definition inherited from the Procedure object, as well as a return data type definition.

Instance Methods [hide private]
str
createSQL(self)
Returns: Full SQL line to create the object.
source code

Inherited from Procedure: __init__

Inherited from _Schema: __cmp__, __str__, createCommand, dropSQL, parseName

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Class Variables [hide private]
  identifier = 'FUNCTION'
SQL identifier for this type of db object.
  returns = ''
Return definition.

Inherited from Procedure: argList, definition

Inherited from _Schema: name, releasable, schemaFileName

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

createSQL(self)

source code 
Returns: str
Full SQL line to create the object.
Overrides: _Schema.createSQL