MCPcopy Index your code
hub / github.com/clips/pattern / create_db_sqlite

Function create_db_sqlite

test/test_db.py:33–45  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

31 DB_MYSQL_EXCEPTION = e
32
33def create_db_sqlite():
34 global DB_SQLITE
35 global DB_SQLITE_EXCEPTION
36 try:
37 DB_SQLITE = db.Database(
38 type = db.SQLITE,
39 name = "pattern_unittest_db",
40 host = HOST,
41 port = PORT,
42 username = USERNAME,
43 password = PASSWORD)
44 except Exception, e:
45 DB_SQLITE_EXCEPTION = e
46
47#---------------------------------------------------------------------------------------------------
48

Callers 1

suiteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…