| 96 | } |
| 97 | |
| 98 | void ODBCTestBase::FreeEnvConnHandles() { |
| 99 | // Free connection handle |
| 100 | EXPECT_EQ(SQL_SUCCESS, SQLFreeHandle(SQL_HANDLE_DBC, conn)); |
| 101 | |
| 102 | // Free environment handle |
| 103 | EXPECT_EQ(SQL_SUCCESS, SQLFreeHandle(SQL_HANDLE_ENV, env)); |
| 104 | } |
| 105 | |
| 106 | std::string ODBCTestBase::GetConnectionString() { |
| 107 | std::string connect_str = |
nothing calls this directly
no test coverage detected