Parameters
- ordinal
- The zero-based column ordinal.
Return Value
A string that is the name of the specified column.
Gets the name of the specified column.
A string that is the name of the specified column.
public void GetFields(ZohoDeskConnection ZohoDeskConnection) { ZohoDeskCommand cmd = new ZohoDeskCommand("SELECT * FROM Accounts"); cmd.Connection = ZohoDeskConnection; ZohoDeskConnection.Open(); try { ZohoDeskDataReader reader = cmd.ExecuteReader(); reader.Read(); for (int i=0;i < reader.FieldCount;i++) { string fieldType = reader.GetDataTypeName(i); string fieldName = reader.GetName(i); string fieldType2 = reader.GetFieldType(i).FullName; Console.WriteLine(fieldName+"\t"+ fieldType+"\t"+ fieldType2); } reader.Close(); } finally { ZohoDeskConnection.Close(); } }
Public Sub GetFields(ByVal ZohoDeskConnection As ZohoDeskConnection Dim cmd As ZohoDeskCommand = New ZohoDeskCommand("SELECT * FROM Accounts") cmd.Connection = ZohoDeskConnection ZohoDeskConnection.Open() Try Dim reader As ZohoDeskDataReader = cmd.ExecuteReader() reader.Read() Dim i As Integer For i = 0 To reader.FieldCount - 1 Dim fieldType As String = reader.GetDataTypeName(i) Dim fieldName As String = reader.GetName(i) Console.WriteLine(fieldName & " " & fieldType) Next i reader.Close() Finally ZohoDeskConnection.Close() End Try End Sub