Sequências de escape GUID
O ODBC usa sequências de escape para literais GUID. A sintaxe dessa sequência de escape é a seguinte:
{guid 'nnnnnnnn-nnnn-nnnn-nnnn-nnnnnnnnnnnn'}
Comentários
Na notação BNF, a sintaxe é a seguinte:
ODBC-guid-escape ::=
Guid ODBC-esc-initiatorODBC-esc-terminator 'guid-value'
ODBC-esc-initiator ::= {
ODBC-esc-terminator ::= }
guid-value ::= clock-low-value guid-separator clock-middle-value guid-separator clock-high-value guid-separator clock-seq-value guid-separator node-value
guid-separator ::= -
clock-low-value ::= hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit
clock-middle-value ::= hex_digit hex_digit hex_digit hex_digit
clock-high-value ::= hex_digit hex_digit hex_digit hex_digit
clock-seq-value ::= hex_digit hex_digit hex_digit hex_digit
clock-node-value ::= hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit hex_digit
hex_digit ::= 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A | B | C | D | E | F
A sequência de escape literal do GUID terá suporte se o tipo de dados GUID for compatível com a fonte de dados. Um aplicativo deve chamar SQLGetTypeInfo para determinar se esse tipo de dados tem suporte.