MCPcopy Create free account
hub / github.com/apache/arrow / SQLCancel

Function SQLCancel

cpp/src/arrow/flight/sql/odbc/entry_points.cc:203–210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201}
202
203SQLRETURN 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
212SQLRETURN SQL_API SQLCloseCursor(SQLHSTMT stmt) {
213 return arrow::flight::sql::odbc::SQLCloseCursor(stmt);

Callers

nothing calls this directly

Calls 1

DriverExceptionClass · 0.85

Tested by

no test coverage detected