How can I use VFP free tables in Visual C#.net ? Is it possible?

--
Sandor

Re: VFP free table in C#.Net by OlivierH

OlivierH
Sat Apr 26 04:05:42 CDT 2008

Hi,

You use Vfp free table with the oledb foxpro , the last version work
with all dbf vfp.
http://www.microsoft.com/downloads/details.aspx?familyid=e1a87d8f-2d58-491f-a0fa-95a3289c5fd4&displaylang=en
And in Ado.net, you use SqlOledb client.

But the best way , it's to use SqlServer Express Edition for the future .

Olivier,



Sandor Hajdu a écrit :
> How can I use VFP free tables in Visual C#.net ? Is it possible?
>
>

Re: VFP free table in C#.Net by Zootal

Zootal
Sat Apr 26 10:52:07 CDT 2008

We did this, and had some performance problems that we finally determined
was a byproduct of using oledb via c#. In the end we replaced it with a
module that used VFP to do native access to the tables. Keep in mind that
you will probably not get the blindingly fast performance that you get from
VFP using native table access. Another thing to consider is using the VFP
api. I've done it from c++, and it's quite fast. IIRC, it requires that VFP
be running, so is probably not an option. Another option, would be to use
MySQL instead of vfp free tables, but if you are trying to use vfp from c#,
that may not be an option - ie someone is giving you vfp tables, and you
need to read them in c#.

"Sandor Hajdu" <SandorHajdu@discussions.microsoft.com> wrote in message
news:95D5152D-DB82-4007-8F90-1ABD7B9B18AD@microsoft.com...
> How can I use VFP free tables in Visual C#.net ? Is it possible?
>
> --
> Sandor