Skip to content

Latest commit

 

History

History
63 lines (43 loc) · 1.8 KB

othersupdatesarevisible-method-sqlserverdatabasemetadata.md

File metadata and controls

63 lines (43 loc) · 1.8 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic apilocation apiname apitype
othersUpdatesAreVisible Method (SQLServerDatabaseMetaData)
othersUpdatesAreVisible Method (SQLServerDatabaseMetaData)
David-Engel
davidengel
01/19/2017
sql
connectivity
reference
sqljdbc.jar
SQLServerDatabaseMetaData.othersUpdatesAreVisible
Assembly

othersUpdatesAreVisible Method (SQLServerDatabaseMetaData)

[!INCLUDEDriver_JDBC_Download]

Retrieves whether updates that are made by others are visible.

Syntax

  
public boolean othersUpdatesAreVisible(int type)  

Parameters

type

An int that indicates the result set type, which can be one of the following values as defined in java.sql.ResultSet or SQLServerResultSet:

java.sql.ResultSet Types

TYPE_FORWARD_ONLY

TYPE_SCROLL_SENSITIVE

TYPE_SCROLL_INSENSITIVE

SQLServerResultSet Types

TYPE_SS_SCROLL_STATIC

TYPE_SS_SCROLL_KEYSET

TYPE_SS_DIRECT_FORWARD_ONLY

TYPE_SS_SERVER_CURSOR_FORWARD_ONLY

TYPE_SS_SCROLL_DYNAMIC

Return Value

true if the updates are visible. Otherwise, false.

Exceptions

SQLServerException

Remarks

This othersUpdatesAreVisible method is specified by the othersUpdatesAreVisible method in the java.sql.DatabaseMetaData interface.

See Also

SQLServerDatabaseMetaData Methods
SQLServerDatabaseMetaData Members
SQLServerDatabaseMetaData Class