Index of the main module
-
m
sqlobject.main
...
- a __package__ ...
- a sqlhub ... - This object serves as a hub for connections, so that you can pass in a ConnectionHub to a SQLObject subclass as though it was a connection, but actually bind a real database connection later. You can also bind connections on a per-thread basis.
-
C
SQLObject
...
- a childName ...
-
C
sqlmeta
...
- This object is the object we use to keep track of all sorts of
information. Subclasses are made for each SQLObject subclass
(dynamically if necessary), and instances are created to go
alongside every SQLObject instance.
- a cacheValues ...
- a childClasses ...
- a columnDefinitions ...
- a columnList ...
- a columns ...
- a dirty ...
- a indexDefinitions ...
- a indexes ...
- a joinDefinitions ...
- a joins ...
- f __classinit__ ...
- f __init__ ...
- f addColumn ...
- f addColumnsFromDatabase ...
- f addIndex ...
- f addJoin ...
- f asDict ... - Return the object as a dictionary of columns to values.
- f delColumn ...
- f delJoin ...
- f expireAll ... - Expire all instances of this class.
- f getColumns ...
- f send ...
- f setClass ...
- f __classinit__ ...
- f __eq__ ...
- f __ge__ ...
- f __getstate__ ...
- f __gt__ ...
- f __init__ ...
- f clearTable ...
- f coerceID ...
- f createIndexes ...
- f createIndexesSQL ...
- f createJoinTables ...
- f createJoinTablesSQL ...
- f createTable ...
- f createTableSQL ...
- f delete ...
- f deleteBy ...
- f deleteMany ...
- f destroySelf ...
- f dropJoinTables ...
- f dropTable ...
- f expire ...
- f get ...
- f select ...
- f selectBy ...
- f set ...
- f setConnection ...
- f sqlrepr ...
- f sync ...
- f syncUpdate ...
- f tableExists ...
- f tablesUsedImmediate ...
- C SQLObjectNotFound ...
- f getID ...
- f getObject ...
- f setDeprecationLevel ... - Set the deprecation level for SQLObject. Low levels are more actively being deprecated. Any warning at a level at or below warning will give a warning. Any warning at a level at or below exception will give an exception. You can use a higher exception level for tests to help upgrade your code. None for either value means never warn or raise exceptions.