Skip to content

Commit

Permalink
Reword and extend list of supported SQL statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jhlodin authored and hashhar committed Jul 9, 2021
1 parent f7f5639 commit cc767dd
Showing 1 changed file with 45 additions and 3 deletions.
48 changes: 45 additions & 3 deletions docs/src/main/sphinx/connector/sqlserver.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,56 @@ Complete list of `SQL Server data types

.. include:: jdbc-type-mapping.fragment

.. _sqlserver-sql-support:

SQL support
-----------

The following SQL statements are not yet supported:
The connector provides **read access and limited write access** to data and
metadata in SQL Server. The following section lists all supported SQL statements
and provides further details.

.. important::
No other SQL statements are supported.

Read access:

* :doc:`/sql/select` including:

* :doc:`/sql/match-recognize`
* :doc:`/sql/values`

* :doc:`/sql/show-catalogs`
* :doc:`/sql/show-columns`
* :doc:`/sql/show-schemas`
* :doc:`/sql/show-tables`
* :doc:`/sql/describe`

Write access:

* :doc:`/sql/create-schema`
* :doc:`/sql/create-table`
* :doc:`/sql/create-table-as`
* :doc:`/sql/delete`
* :doc:`/sql/grant`
* :doc:`/sql/revoke`
* :doc:`/sql/drop-schema`
* :doc:`/sql/drop-table`
* :doc:`/sql/insert`
* :doc:`/sql/show-create-table`

Other supported commands:

* :doc:`/sql/deallocate-prepare`
* :doc:`/sql/describe-input`
* :doc:`/sql/describe-output`
* :doc:`/sql/execute`
* :doc:`/sql/explain`
* :doc:`/sql/explain-analyze`
* :doc:`/sql/prepare`
* :doc:`/sql/reset-session`
* :doc:`/sql/set-session`
* :doc:`/sql/show-functions`
* :doc:`/sql/show-session`
* :doc:`/sql/use`

.. _sqlserver-pushdown:

Expand Down

0 comments on commit cc767dd

Please sign in to comment.