GUACAMOLE-363: Move sqlserver-driver documentation to different section.
Project: http://git-wip-us.apache.org/repos/asf/guacamole-manual/repo Commit: http://git-wip-us.apache.org/repos/asf/guacamole-manual/commit/31f8d443 Tree: http://git-wip-us.apache.org/repos/asf/guacamole-manual/tree/31f8d443 Diff: http://git-wip-us.apache.org/repos/asf/guacamole-manual/diff/31f8d443 Branch: refs/heads/master Commit: 31f8d4430571ea6490d46329431c80bf3382bfdc Parents: fbbc2bb Author: Nick Couchman <[email protected]> Authored: Mon Dec 11 14:22:50 2017 -0500 Committer: Nick Couchman <[email protected]> Committed: Mon Dec 11 14:22:50 2017 -0500 ---------------------------------------------------------------------- src/chapters/jdbc-auth.xml | 48 +++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 26 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/guacamole-manual/blob/31f8d443/src/chapters/jdbc-auth.xml ---------------------------------------------------------------------- diff --git a/src/chapters/jdbc-auth.xml b/src/chapters/jdbc-auth.xml index f634b73..d2818e5 100644 --- a/src/chapters/jdbc-auth.xml +++ b/src/chapters/jdbc-auth.xml @@ -115,6 +115,28 @@ directory. Microsoft's JDBC driver can be downloaded from Microsoft's <link xlink:href="https://docs.microsoft.com/en-us/sql/connect/sql-connection-libraries#anchor-20-drivers-relational-access"> SQL Connection Libraries</link> page.</para> + <para>In addition to the various parameters mentioned below, the SQL Server driver has a + unique parameter available to control the driver compatibility of the JDBC module: + <property>sqlserver-driver</property>. This parameter allows you to choose the compatibility + mode of the module with various TDS-comptabile drivers such that it can be used with different + versions of SQL Server and even non-Microsoft SQL Server databases. The following options are available + for the <property>sqlserver-driver</property> property: + <variablelist> + <varlistentry> + <constant>microsoft2005</constant>: The current Microsoft driver, + supporting SQL Server 2005 and later. + </varlistentry> + <varlistentry> + <constant>microsoft</constant>: The legacy SQL Server support. + </varlistentry> + <varlistentry> + <constant>jtds</constant>: The open source JTDS driver. + </varlistentry> + <varlistentry> + <constant>datadirect</constant>: The Progress Sybase driver. + </varlistentry> + </variablelist> + </para> </listitem> </varlistentry> </variablelist> @@ -517,32 +539,6 @@ sqlserver-driver: microsoft2005 given in this chapter.</para> </entry> </row> - <row> - <entry></entry> - <entry></entry> - <entry><property>sqlserver-driver</property></entry> - <entry> - <para>The SQL Server driver has an additional required parameter to - configure the TDS compatibility of the driver. This driver supports - four different options for this command: - <variablelist> - <varlistentry> - <constant>microsoft2005</constant> for the current Microsoft driver, - supporting SQL Server 2005 and later. - </varlistentry> - <varlistentry> - <constant>microsoft</constant> for legacy SQL Server support. - </varlistentry> - <varlistentry> - <constant>jtds</constant> for the open source JTDS driver. - </varlistentry> - <varlistentry> - <constant>datadirect</constant> for the Progress Sybase driver. - </varlistentry> - </variablelist> - </para> - </entry> - </row> </tbody> </tgroup> </informaltable>
