Public =========================================================================================
| 64 | // Public |
| 65 | // ========================================================================================= |
| 66 | ODBCConnection::ODBCConnection(ODBCEnvironment& environment, |
| 67 | std::shared_ptr<Connection> spi_connection) |
| 68 | : environment_(environment), |
| 69 | spi_connection_(std::move(spi_connection)), |
| 70 | is_2x_connection_(environment.GetODBCVersion() == SQL_OV_ODBC2), |
| 71 | is_connected_(false) {} |
| 72 | |
| 73 | Diagnostics& ODBCConnection::GetDiagnosticsImpl() { |
| 74 | return spi_connection_->GetDiagnostics(); |
nothing calls this directly
no test coverage detected