ATLAS Offline Software
Classes | Functions | Variables
python.dbsqlite Namespace Reference

Classes

class  SQLhash
 
class  SQLHashItemIterator
 
class  SQLHashKeyIterator
 
class  SQLHashValueIterator
 

Functions

def open (file=None, *args, **kw)
 
def open_shelf (file=None, *args, **kw)
 

Variables

 __all__
 
 error
 
 flags
 
 p
 
 q
 
 r
 

Function Documentation

◆ open()

def python.dbsqlite.open (   file = None,
args,
**  kw 
)

Definition at line 136 of file dbsqlite.py.

136 def open(file=None, *args, **kw):
137  if file is not None:
138  return SQLhash(file, *args, **kw)
139  return SQLhash()
140 

◆ open_shelf()

def python.dbsqlite.open_shelf (   file = None,
args,
**  kw 
)

Definition at line 141 of file dbsqlite.py.

141 def open_shelf(file=None, *args, **kw):
142  _db = open(file, *args, **kw)
143  return shelve.Shelf(_db)
144 

Variable Documentation

◆ __all__

python.dbsqlite.__all__
private

Definition at line 18 of file dbsqlite.py.

◆ error

python.dbsqlite.error

Definition at line 26 of file dbsqlite.py.

◆ flags

python.dbsqlite.flags

Definition at line 202 of file dbsqlite.py.

◆ p

python.dbsqlite.p

Definition at line 213 of file dbsqlite.py.

◆ q

python.dbsqlite.q

Definition at line 213 of file dbsqlite.py.

◆ r

python.dbsqlite.r

Definition at line 213 of file dbsqlite.py.

python.dbsqlite.open_shelf
def open_shelf(file=None, *args, **kw)
Definition: dbsqlite.py:141
python.dbsqlite.open
def open(file=None, *args, **kw)
Definition: dbsqlite.py:136