Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 2.15 KB

handling-metadata-with-the-jdbc-driver.md

File metadata and controls

38 lines (28 loc) · 2.15 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic
Handling metadata
Learn what metadata is available in the different JDBC objects when using the JDBC Driver for SQL Server.
David-Engel
davidengel
04/20/2021
sql
connectivity
conceptual

Handling metadata with the JDBC driver

[!INCLUDEDriver_JDBC_Download]

The [!INCLUDEjdbcNoVersion] can be used to work with metadata in a [!INCLUDEssNoVersion] database in various ways. The JDBC driver can be used to get metadata about the database, a result set, or parameters.

The JDBC driver provides three classes for retrieving metadata from a [!INCLUDEssNoVersion] database:

The articles in this section describe how you can use each of the three metadata classes to work with metadata in a [!INCLUDEssNoVersion] database.

Note

The metadata methods discussed in this section are generally expensive in terms of application performance, so care should be taken with their usage.

In this section

Article Description
Using database metadata Describes how to retrieve metadata information about the currently connected database.
Using result set metadata Describes how to retrieve metadata information about the current result set.
Using parameter metadata Describes how to retrieve metadata information about the parameters of prepared and callable statements.

See also

Overview of the JDBC driver