COLUNA NO RECORDSET

USUARIO.EXCLUIDOS 09/08/2007 09:37:10
#230138
Tem como eu saber se uma determinada coluna existe no recordset.

Obrigado
USUARIO.EXCLUIDOS 09/08/2007 09:43:27
#230141
Resposta escolhida
Utilize esta função:

Public Function FieldExist(ByVal RecordSet As RecordSet, NomeCampo As String) As Boolean
Dim rs As ADODB.RecordSet
Set rs = RecordSet.Clone

FieldExist = False

For i = 0 To rs.Fields.Count - 1
If LCase(rs.Fields(i).Name) = LCase(NomeCampo) Then
FieldExist = True
Exit For
End If
Next

End Function

Tópico encerrado , respostas não são mais permitidas