Microsoft ODBC for SQL Server
Configure the Microsoft ODBC for SQL Server data source that will be used in the ODI "source
" connection parameter:
Software requirements
When using the SNC database driver (dbmsnc
), the "Microsoft ODBC for SQL Server"
software installed must be installed on the computer running Genero applications, see msdn.microsoft.com:
-
On Microsoft® Windows® platforms:
-
With the Microsoft ODBC 17 driver for SQL Server (MSODBCSQL17.DLL), use the
dbmsnc_17
ODI driver.Minimum Microsoft ODBC for SQL Server version: 17.6.
- With the Microsoft ODBC 18 driver for SQL Server
(MSODBCSQL18.DLL), use the
dbmsnc_18
ODI driver.
-
-
On Linux® platforms:
-
With Microsoft ODBC 17 driver for SQL Server, use the
dbmsnc_17
ODI driver.Minimum Microsoft ODBC for SQL Server version: 17.6.
- With Microsoft ODBC 18 driver for SQL Server, use the
dbmsnc_18
ODI driver.
-
On Windows platforms, the SNC ODI driver is linked with ODBC32.DLL; There is no need to set the PATH environment variable to a specific database client library path: The ODBC32.DLL driver manager will find the MS ODBC driver from the data source settings.
On Linux
platforms, the dbmsnc_nn
drivers are directly linked to the
corresponding libmsodbcsql-nn.so ODBC driver library. There
is no need to install the unixODBC software. The SNC drivers will be able to connect to SQL Server,
as long as the dynamic linker can find the Microsoft ODBC driver library. The
libmsodbcsql-nn.so shared library is a symbolic link located
in /usr/lib64, which points to the real ODBC shared library.
Specific ODBC settings
[Microsoft][ODBC Driver 18 for SQL Server]SSL Provider: [error:1416F086:SSL routines:
tls_process_server_certificate:certificate verify failed:self signed certificate]
To
disable encryption on Linux platforms, set the following ODBC option in the data source definition
file:Encrypt = No
On Microsoft Windows, set "Connection Encryption" to "Optional" in the 4th
panel of the ODBC data source configuration application.Client locale settings
On Windows, the MS ODBC database
client locale is defined by the Windows regional settings for non-unicode applications, and must match the BDL application
locale. The BDL application locale is usually also defined by the regional settings (the ACP), but
it can be set with the LANG environment variable (typically to .fglutf8
). UTF-8 can
also be enabled in the Windows regional settings (then LANG does not have to be set to
.fglutf8
).
On Windows, the ODBC data source
option "Perform translation for character data" option must be disabled, when using UTF-8
application locale defined by LANG=.fglutf8
, NLS_LENGTH_SEMANTICS=BYTE, and the
database has _UTF8 collation for CHAR/VARCHAR columns.
On Linux, with the MS ODBC driver, no ODBC configuration is required: Character set conversions and ODBC bindings are automatically deduced from to C application locale (LANG/LC_ALL).
On both Linux and Windows, ODBC character string bindings is controlled by the
widechar
option, which is automatically selected according to the application
locale and length semantics. For more details see CHAR and VARCHAR data types.
ODBC data source example
[snc_msvtest1_dirac_utf8]
Driver = /usr/lib64/libmsodbcsql-17.so
Description = SQL Server ODBC 17
#Server = [protocol:]server[,port]
Server = tcp:dirac,1433
Database = msvtest1
#-- Always Encrypted (Column Encryption)
# ColumnEncryption = Enabled
#-- Transport encryption with SSL/TLS
# Encrypt = Yes/No
# TrustServerCertificate = xxx
# Trusted_Connection=yes
source
" parameter needs to
be defined as
follows:dbi.database.dbname.source = "snc_msvtest1_dirac_utf8"