MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / run_thick_mode

Function run_thick_mode

test/dialect/oracle/_oracledb_mode.py:25–30  ·  view source on GitHub ↗
(url, queue, **kw)

Source from the content-addressed store, hash-verified

23
24
25def run_thick_mode(url, queue, **kw):
26 e = create_engine(url, **kw)
27 with e.connect() as conn:
28 res = _get_version(conn)
29 queue.put((res, e.dialect.is_thin_mode(conn)))
30 e.dispose()

Callers

nothing calls this directly

Calls 6

create_engineFunction · 0.90
_get_versionFunction · 0.85
is_thin_modeMethod · 0.80
connectMethod · 0.45
putMethod · 0.45
disposeMethod · 0.45

Tested by

no test coverage detected