10-13-2010 02:17 PM
Is there a way to get the GUID of a Contact by using the OLEDB provider?
10-13-2010 02:22 PM
10-14-2010 06:03 AM
Thanks!
My problem was when I ran a
SELECT * FROM Contact
in Excel there was no ContacId displayed and when I ran
SELECT ContactId FROM Contact
Excel said there was no such column.
What I had to do was in Visual Studio run an OleDbReader.GetGuid(i).ToString() to extract the data.
Thanks again!