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

Function PostError

cpp/src/arrow/flight/sql/odbc/odbc_impl/system_dsn.cc:48–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46}
47
48void PostError(DWORD error_code, LPWSTR error_msg) {
49#if defined _WIN32
50 MessageBox(NULL, error_msg, L"Error!", MB_ICONEXCLAMATION | MB_OK);
51#endif // _WIN32
52 SQLPostInstallerError(error_code, error_msg);
53}
54
55void PostArrowUtilError(arrow::Status error_status) {
56 std::string error_msg = error_status.message();

Callers 3

PostArrowUtilErrorFunction · 0.85
PostLastInstallerErrorFunction · 0.85
ConfigDSNWFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected