Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate the DRT Windows-specific versions of ODBC. #15560

Merged
merged 3 commits into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions druntime/src/core/sys/windows/sql.d
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @@@DEPRECATED_2.112@@@

/**
$(RED Warning:
This module is deprecated. It will be removed in 2.112.
Use `etc.c.odbc.sql` instead.)

* Windows API header module
*
* Translated from MinGW Windows headers
*
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_sql.d)
*/

deprecated("Import etc.c.odbc.sql instead.")
module core.sys.windows.sql;
version (Windows):

Expand Down
8 changes: 8 additions & 0 deletions druntime/src/core/sys/windows/sqlext.d
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @@@DEPRECATED_2.112@@@

/**
$(RED Warning:
This module is deprecated. It will be removed in 2.112.
Use `etc.c.odbc.sqlext` instead.)

* Windows API header module
*
* Translated from MinGW Windows headers
*
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_sqlext.d)
*/

deprecated("Import etc.c.odbc.sqlext instead.")
module core.sys.windows.sqlext;
version (Windows):

Expand Down
8 changes: 8 additions & 0 deletions druntime/src/core/sys/windows/sqltypes.d
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @@@DEPRECATED_2.112@@@

/**
$(RED Warning:
This module is deprecated. It will be removed in 2.112.
Use `etc.c.odbc.sqltypes` instead.)

* Windows API header module
*
* Translated from MinGW Windows headers
*
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_sqltypes.d)
*/

deprecated("Import etc.c.odbc.sqltypes instead.")
module core.sys.windows.sqltypes;
version (Windows):

Expand Down
8 changes: 8 additions & 0 deletions druntime/src/core/sys/windows/sqlucode.d
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @@@DEPRECATED_2.112@@@

/**
$(RED Warning:
This module is deprecated. It will be removed in 2.112.
Use `etc.c.odbc.sqlucode` instead.)

* Windows API header module
*
* Translated from MinGW Windows headers
*
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_sqlucode.d)
*/

deprecated("Import etc.c.odbc.sqlucode instead.")
module core.sys.windows.sqlucode;
version (Windows):

Expand Down