Subject Re: how to create database using command line without an interactive isql
Author Petr Jakes
> You could create a shell script that calls isql.
>
> Something like:
>
> fbcreate-db.sh -dbname yourdbname.fdb -u username -p password
-charset utf8
>
> I use isql all the time, so I really don't know why you would not want
> to use isql.

I would like to do something like:
/opt/firebird/bin/isql -q -user sysdba -password masterkey CREATE
DATABASE "127.0.0.1:/work/working.gdb"

I am trying to work with the database stored in the tmpfs (kind of RAM
disk), so I have to create the database every time the system is
started. Because of that I am trying to find the way to create the
database using the shell script (command line command??). Yes, of
course I know I can use "isql -i some.sql".

Just looking for an other solution and I can not find the proper syntax.

Petr