| 640 | } |
| 641 | |
| 642 | void ODBCConnection::ReleaseConnection() { |
| 643 | Disconnect(); |
| 644 | environment_.DropConnection(this); |
| 645 | } |
| 646 | |
| 647 | std::shared_ptr<ODBCStatement> ODBCConnection::CreateStatement() { |
| 648 | std::shared_ptr<Statement> spi_statement = spi_connection_->CreateStatement(); |
no test coverage detected