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 134 of file dbsqlite.py.

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

◆ open_shelf()

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

Definition at line 139 of file dbsqlite.py.

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

Variable Documentation

◆ __all__

python.dbsqlite.__all__
private

Definition at line 16 of file dbsqlite.py.

◆ error

python.dbsqlite.error

Definition at line 24 of file dbsqlite.py.

◆ flags

python.dbsqlite.flags

Definition at line 200 of file dbsqlite.py.

◆ p

python.dbsqlite.p

Definition at line 211 of file dbsqlite.py.

◆ q

python.dbsqlite.q

Definition at line 211 of file dbsqlite.py.

◆ r

python.dbsqlite.r

Definition at line 211 of file dbsqlite.py.

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