Qore SchemaReverse Module Reference  1.1
SchemaReverse::CodesBaseReverse Class Reference

A basic class for all DB object classes which use SQL code as base of its content. More...

Inheritance diagram for SchemaReverse::CodesBaseReverse:

Public Member Methods

 constructor (string object_type, AbstractDatasource ds, string mask, string function_name,)
 
hash toQore ()
 Dedicated functionlity to get DB object info into the internal structure is done here. More...
 
- Public Member Methods inherited from SchemaReverse::AbstractReverseObject
 constructor (AbstractDatasource ds, string name)
 
Database database ()
 
AbstractDatasource datasource ()
 
string name ()
 
string toString ()
 Make a string with Qore code from a structure prepared by AbstractReverseObject::toQore(). More...
 

Detailed Description

A basic class for all DB object classes which use SQL code as base of its content.

For example multiple VIEWs or PROCEDUREs etc. This class is not primarily used for direct usage in user code, but only as a base for real implementations.

Member Function Documentation

◆ constructor()

SchemaReverse::CodesBaseReverse::constructor ( string  object_type,
AbstractDatasource  ds,
string  mask,
string  function_name 
)
Parameters
object_typea string with DB type name see TYPE_TO_CLASS map
dsa datasource
maska string with DB object name or regex to match names
function_nameto get the DB object info, as eg 'getView'

◆ toQore()

hash SchemaReverse::CodesBaseReverse::toQore ( )
virtual

Dedicated functionlity to get DB object info into the internal structure is done here.

All inherited classes must implement this method to get all required DB metadata in proper format

Implements SchemaReverse::AbstractReverseObject.