I've got a data base with a .gdb extension and i don't know what can i do to read the data inside.Also once reading the data i should update an Access data base. What can i do Please can you help me.
PS. Now i'm using a library colled TinyDBOcx wrote in C++. Can i use it in a Vs.NET application
Thank you very much
bye
Loris

DataBase .gdb
micxba
Morten Dahl
The first things that come up are
www.oledb.net
www.ibprovider.com
www.bdcsoftware.com
bobhagan
GoranB
kevin_estcst
If you have an OLEDB provider for the database, you can use the System.OleDb namespace to access its data.
If not, you can use the Microsoft.ODBC namespace (downloadable from the www.microsoft.com/data site).
Either way, you'll need to know how to connect to the data (that is, the appropriate connection string). If you can find an existing application that communicates with the data, you can find out how that application does the work, and mirror it in the .NET application.
If you have neither an OLEDB nor an ODBC provider for the database, you'll need to next investigate whether there's a COM component that can provide data access for you. You can then use COM Interop to access the data, if so.
If none of these pan out, you'll need to look into opening the GDB file as a binary file, and parsing the data out yourself. Not a nice thought...