I'd like to create a new Firebird database in my C# client application. Is there a command line utility that lets you do this?
How do I create a new Firebird database from the command line?
14k views Asked by dthrasher At
2
There are 2 answers
0
On
We are using something like this for keys insensitive. (Firebird 3 >)
isql -input test.sql
SET SQL DIALECT 3;
SQL> create database 'c:\database\test.fdb' page_size 8192 DEFAULT CHARACTER SET UTF8
CON> ;
CREATE TABLE CUSTOMERS (
CUST_ID INTEGER NOT NULL,
CUST_NAME VARCHAR(20) COLATE UNICODE_CI,
CUST_UNISITE INTEGER
);
you can use isql but I advice you to use directly the api.
test.sql is like this :
creating database via the api