How to open .GDB files [closed]

-1

I am a list of clients and work order, in backup in .GDB, how can I open such a file.

    
asked by anonymous 23.03.2018 / 19:11

2 answers

1

To back up you will need a database system, an interesting option would be to use IBExpert . To download the free version, go to IBExpert Download Center register to download.

    
23.03.2018 / 19:21
1
The .gdb file conversion to Firebird SQL is a relatively simple path.

Firebird is a well-known open-source database, extracted from the Borland Open Source edition of InterBase. It maintains a good degree of compatibility and has many tools (libraries for access, data management).

There are some free migration tools you can use:

  • FBConvert can convert from Interbase to Firebird (and does not require the presence of a Firebird server on the computer).
  • FBExport is a command line tool and GUI for exporting / import data from Firebird / InterBase databases. Is based in the IBPP C ++ library and runs on both Windows and Linux.
  • Interbase DataPump lets you pump data and migrate from banks Interbase native data for Firebird databases with quite easily.

  • The FlameRobin database administration tool allows easy management of .fdb and .gdb files via GUI.

    li>

Take a look at the Driver Documentation page if you are interested.

Obs. If you have a very old Interbase file, your best bet is to get some old installation of Interbase 5.0, run a gbak and restore the database with your Firebird 2.5 installation.

    
23.03.2018 / 19:23