Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1021 Bytes

File metadata and controls

31 lines (23 loc) · 1021 Bytes
title Cursor Concurrency (ODBC)
description Cursor Concurrency (ODBC)
author markingmyname
ms.author maghan
ms.date 03/06/2017
ms.service sql
ms.subservice native-client
ms.topic reference
helpviewer_keywords
concurrency [ODBC]
cursors [ODBC], concurrency
ODBC cursors, concurrency

Cursor Concurrency (ODBC)

[!INCLUDE SQL Server]

Cursor operations, like cursor types, are affected by the concurrency options set by the application. Concurrency options are set using the SQL_ATTR_CONCURRENCY option of SQLSetStmtAttr. The concurrency types are:

  • Read-only (SQL_CONCUR_READONLY)

  • Values (SQL_CONCUR_VALUES)

  • Row version (SQL_CONCUR_ROWVER)

  • Lock (SQL_CONCUR_LOCK)

See Also

Cursor Properties