in reply to Creating a Firebird Database

Hi,
use DBD::Interbase
Regards,
svenXY

Replies are listed 'Best First'.
Re^2: Creating a Firebird Database
by Anonymous Monk on Sep 22, 2005 at 14:11 UTC

    Hi svenXY,

    I think the problem that I've been having is to do with the database that I'm connected to before I create the database. Have you got an example of the actual code that I would use to create the database?

    Thanks for your help.

    Izabelle

      I don't know anything about Firebird/Interbase, but I've had this problem with other RDBMSs before. One possibility is to connect to a system database (many RDBMSs have these to store metadata) in your call to connect and then issue a USE or CREATE DATABASE command once connected. If that doesn't work, you'll need to find a command line tool that works with the RDBMS - something you can use outside of perl to create the database so that you have something to connect to.