| 201 | } |
| 202 | |
| 203 | SQLRETURN SQL_API SQLCancel(SQLHSTMT stmt) { |
| 204 | ARROW_LOG(DEBUG) << "SQLCancel called with stmt: " << stmt; |
| 205 | return ODBC::ODBCStatement::ExecuteWithDiagnostics(stmt, SQL_ERROR, [=]() { |
| 206 | throw arrow::flight::sql::odbc::DriverException("SQLCancel is not implemented", |
| 207 | "IM001"); |
| 208 | return SQL_ERROR; |
| 209 | }); |
| 210 | } |
| 211 | |
| 212 | SQLRETURN SQL_API SQLCloseCursor(SQLHSTMT stmt) { |
| 213 | return arrow::flight::sql::odbc::SQLCloseCursor(stmt); |
nothing calls this directly
no test coverage detected