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

Class Procedure

source code


A database stored procedure schema. Simply consists of name, argument list and definition.

Instance Methods [hide private]
 
__init__(self)
Initialises an empty schema procedure object.
source code
str
createSQL(self)
Returns: Full SQL line to create the object.
source code

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 = 'PROCEDURE'
SQL identifier for this type of database object.
  argList = []
List of arguments for this procedure.
  definition = ''
Procedure definition.

Inherited from _Schema: name, releasable, schemaFileName

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

Initialises an empty schema procedure object.

Overrides: object.__init__

createSQL(self)

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