vote up 0 vote down star

I have some tables being used with the Borland Database Engine that I need access to in C#. But I don't see the BDE as an available Data Source. Is this because it's not doable or something else. If anyone has any info or links to provide on how this is done I would appreciate it.

Thanks

flag

2 Answers

vote up 4 vote down check

I would imagine you would have to use the ODBC drivers for it.

If you are using the ODBC then you will need to search for how to create a connection string for it.

Look into

System.Data.ODBC

and

System.Data.Odbc.OdbcConnection

Ignore the above, it should be OLEDB See the link below. In some of the links I found there are some Borland Purists who say "why work in c# when you can keep it all the same technology stack" but I think thats the same with most languages, theres purists in them all.

I also just found this link

Connecting to BDE Paradox from C#

link|flag
+1 good answer & nice link – Binary Worrier Jun 3 at 14:58
Thanks for the link Peter! That will get me started. – JimDel Jun 4 at 15:18
No problem hope it solves your problem. Thanks Pete – Peter Jun 5 at 16:02
vote up 2 vote down

What is the extension of the file that you are trying to access? The BDE could work with several file types: FoxPro/dBase, Paradox, ASCII and sometimes even Access. Outside of Paradox, you should have no problem using C# to do the access. Like Peter says, ODBC is probably the easiest to access a paradox file from C#, you just need to find a Paradox ODBC driver.

link|flag
The extensions are *.db – JimDel Jun 3 at 16:10
If I recall, that's Paradox. – Marc Bernier Jun 4 at 2:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.