Saturday, August 28, 2010

Installing #Firebird 2.5 #SuperClassic in #Debian #Sid

I needed to install the SuperClassic on my Debian netbook and it takes only two commands
# apt-get install firebird2.5-superclassic
# dpkg-reconfigure firebird2.5-superclassic


Next is to create a database in
/var/lib/firebird/2.5/data/test.fdb



with flamerobin
#apt-get install flamerobin
create table foobar
(
    foobar1 varchar (255),
    foobar2 varchar (255)
       
);

then you can select/insert from foobar

SELECT * 
FROM foobar

or press the + insert sign in the toolbar in the select window

No comments: