MCPcopy Index your code
hub / github.com/webpy/webpy / __init__

Method __init__

web/db.py:1313–1325  ·  view source on GitHub ↗
(self, **keywords)

Source from the content-addressed store, hash-verified

1311 """Firebird Database."""
1312
1313 def __init__(self, **keywords):
1314 try:
1315 import kinterbasdb as db
1316 except Exception:
1317 db = None
1318 pass
1319 if "pw" in keywords:
1320 keywords["password"] = keywords.pop("pw")
1321 keywords["database"] = keywords.pop("db")
1322
1323 self.paramstyle = db.paramstyle
1324
1325 DB.__init__(self, db, keywords)
1326
1327 def delete(self, table, where=None, using=None, vars=None, _test=False):
1328 # firebird doesn't support using clause

Callers

nothing calls this directly

Calls 2

popMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected