Skip to content

Commit

Permalink
Added notice to isqlw this application has been deprecated (fixes #1322)
Browse files Browse the repository at this point in the history
There is no use shipping a broken tool. We have decided to have it return
a deprecation notice in case users upgrade an existing installation.
  • Loading branch information
pkleef committed Nov 8, 2024
1 parent b4cb619 commit f40b011
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions binsrc/tests/isql.c
Original file line number Diff line number Diff line change
Expand Up @@ -10768,6 +10768,11 @@ isql_main (int argc,
isql_printf (_T("Type HELP; for help and EXIT; to exit.\n"));
}

#ifdef _UNICODE
wprintf (L"\nThe current isqlw application has been deprecated and will be removed in a future release\n\n");
exit (1);
#endif

if (nth_non_option || shortcuts_used) /* Used in the traditional way, with datasource,
and possibly username and password given from
the command line? */
Expand Down

0 comments on commit f40b011

Please sign in to comment.