| 1366 | static const unsigned PURGE_NOCHECK = 0x04; |
| 1367 | |
| 1368 | TraceFailedConnection::TraceFailedConnection(const char* filename, const DatabaseOptions* options) : |
| 1369 | m_filename(filename), |
| 1370 | m_options(options) |
| 1371 | { |
| 1372 | Mapping mapping(Mapping::MAP_ERROR_HANDLER, NULL); |
| 1373 | mapping.setAuthBlock(m_options->dpb_auth_block); |
| 1374 | getUserInfo(m_id, *m_options, m_filename, NULL, false, mapping, false); |
| 1375 | } |
| 1376 | |
| 1377 | |
| 1378 | //____________________________________________________________ |
nothing calls this directly
no test coverage detected