vote up 0 vote down star

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?

flag

71% accept rate
client application is made with ? – Hugues Van Landeghem Oct 21 at 16:42
The client application is built in C#. I'll add that to the question. – dthrasher Oct 21 at 20:09

1 Answer

vote up 3 vote down

you can use isql but I advice you to use directly the api.

isql -input test.sql

test.sql is like this :

SET SQL DIALECT 3;

SET NAMES UNICODE_FSS;

CREATE DATABASE 'D:\testdata.fdb'
USER 'SYSDBA' PASSWORD 'masterkey'
PAGE_SIZE 16384
DEFAULT CHARACTER SET UNICODE_FSS;

CREATE TABLE CUSTOMERS (
    CUST_ID       INTEGER NOT NULL,
    CUST_NAME     INTEGER,
    CUST_UNISITE  INTEGER
);

CREATE TABLE SMS_DETAIL (
    SD_ID                       INTEGER NOT NULL,
    SD_MESSAGE_DATA             VARCHAR(160)
);

creating database via the api

link|flag
Thanks for the isql example. How would I use the API? What language is the API written in? – dthrasher Oct 21 at 20:11
the API language is C++. Many components encapsulate the API in different language. I think you can make this with the dotnet provider. – Hugues Van Landeghem Oct 22 at 20:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.