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

Class View

source code


A database view schema. Simply consists of name and definition.

Instance Methods [hide private]
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__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Class Variables [hide private]
  identifier = 'VIEW'
SQL identifier for this type of database object.
  definition = ''
View definition in SQL.
  isSchemaBound = False
Turn on schemabinding option

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