Condividi tramite


ObjectID Property

Questa caratteristica verrà rimossa a partire da una delle prossime versioni di Microsoft SQL Server. Evitare di utilizzare questa funzionalità in un nuovo progetto di sviluppo e prevedere interventi di modifica nelle applicazioni in cui è attualmente implementata.

The ObjectID property returns the system-assigned identifier for a Microsoft SQL Server database or database object.

Sintassi

object.ObjectID

Parts

  • object
    An expression that evaluates to an object in the Applies To list

Data Type

Long

Modifiable

Read-only

Prototype (C/C++)

HRESULT GetObjectID(LPLONG pRetVal);

Osservazioni

The definitions of many SQL Server database components are implemented as records in SQL Server system tables. Within a system table, one column may be designated as an identifier. An identifier is an integer value that is unique for all rows in the table. Identifiers are assigned by SQL Server.

The ObjectID property represents a SQL Server component identifier and, by using the ItemByID method, provides an alternate method for selecting a specific object from a collection.

Applies To: