Subject | Re: [firebird-support] please help |
---|---|
Author | Helen Borrie |
Post date | 2006-04-25T23:16:14Z |
At 01:26 AM 26/04/2006, you wrote:
with InterBase 6.5.
However, I'd draw your attention to the note at the top of the
cs_example.sql script:
/* Note: there are three locations in this script to modify the
database name */
Script cs_example.sql creates and does character set-related stuff in
a database it creates and connects to:
create database '/tmp/example.gdb' user 'SYSDBA' password 'masterkey';
i.e. a database on Linux.
Then, the script inputs another script:
input cs_util.sql;
The first thing this script does is this:
connect 'c:\database\charset.gdb' user sysdba password 'masterkey';
...and then proceeds to do a whole lot of DDL on *that* database.
So really the first problem you have to look at is the actual
database you want to connect to...
^ heLen
>Hey guys,I guess it's fairly doubtful that anyone reading this list is working
>I was wondering why no one answered to the two posts i made yesterday;
>I'm sure at least some of you are able to help me out as I'm really
>really desperate with this; so please just have a look at my post at
>http://groups.yahoo.com/group/firebird-support/message/74952
with InterBase 6.5.
However, I'd draw your attention to the note at the top of the
cs_example.sql script:
/* Note: there are three locations in this script to modify the
database name */
Script cs_example.sql creates and does character set-related stuff in
a database it creates and connects to:
create database '/tmp/example.gdb' user 'SYSDBA' password 'masterkey';
i.e. a database on Linux.
Then, the script inputs another script:
input cs_util.sql;
The first thing this script does is this:
connect 'c:\database\charset.gdb' user sysdba password 'masterkey';
...and then proceeds to do a whole lot of DDL on *that* database.
So really the first problem you have to look at is the actual
database you want to connect to...
^ heLen