JET_INDEXID struttura
Si applica a: Windows | Windows Server
JET_INDEXID struttura
La struttura JET_INDEXID contiene un ID indice. Un ID indice è un hint usato per accelerare la selezione dell'indice corrente usando JetSetCurrentIndex. È più utile quando esiste un numero molto elevato di indici su una tabella. L'ID indice può essere recuperato usando JetGetIndexInfo o JetGetTableIndexInfo.
typedef struct tagJET_INDEXID {
unsigned long cbStruct;
char rgbIndexId[sizeof(JET_API_PRT) + sizeof(unsigned long) + sizeof(unsigned long)];
} JET_INDEXID;
Membri
cbStruct
Dimensioni, in byte, dell'ID indice.
Si tratta della dimensione effettiva dell'ID di indice restituito nel buffer di output da JetGetIndexInfo o JetGetTableIndexInfo.
rgbIndexId
BLOB opaco di informazioni usate dal motore per identificare rapidamente un indice nella cache dello schema.
Non tentare di interpretare il BLOB di informazioni. Non è una dimensione impostata.
Requisiti
Requisito | Valore |
---|---|
Client |
Richiede Windows Vista, Windows XP o Windows 2000 Professional. |
Server |
Richiede Windows Server 2008, Windows Server 2003 o Windows 2000 Server. |
Intestazione |
Dichiarato in Esent.h. |
Vedere anche
JetGetIndexInfo
JetGetTableIndexInfo
JetGetTableInfo
JetSetCurrentIndex