|
Ravel Python API Reference
A Database-Defined Network Controller
|
A component in an application's SQL implementation. More...
Inherits object.
Public Member Functions | |
| def | __init__ |
| def | drop |
| Drop the component from the specified database. More... | |
| def | watchable |
A component in an application's SQL implementation.
Any addition to the database is considered a 'component' that must be removed when the application is unloaded. A component could be a table, view, function, etc.
| def ravel.app.AppComponent.__init__ | ( | self, | |
| name, | |||
| typ | |||
| ) |
| name | the name of the component |
| typ | the type of component (table, view, function) |
| def ravel.app.AppComponent.drop | ( | self, | |
| db | |||
| ) |
Drop the component from the specified database.
| db | a ravel.db.RavelDb instance containing the component |
| def ravel.app.AppComponent.watchable | ( | self | ) |
1.8.6