Subject | RE: [firebird-support] Create table NOT NULL and CHARACTER SET |
---|---|
Author | Rick Debay |
Post date | 2006-11-17T16:48:05Z |
OK, how about this one:
RECREATE TABLE TEST_1
(
TST D_TST_DOMAIN CHARACTER SET ASCII COLLATE ASCII
)
How do you override the character set of a domain?
-----Original Message-----
From: firebird-support@yahoogroups.com
[mailto:firebird-support@yahoogroups.com] On Behalf Of Thomas
Steinmaurer
Sent: Thursday, November 16, 2006 12:49 PM
To: firebird-support@yahoogroups.com
Subject: Re: [firebird-support] Create table NOT NULL and CHARACTER SET
RECREATE TABLE TEST_2
(
TST2 CHAR(2) CHARACTER SET UTF8 NOT NULL COLLATE UNICODE );
--
Best Regards,
Thomas Steinmaurer
LogManager Series - Logging/Auditing Suites supporting InterBase,
Firebird, Advantage Database, MS SQL Server and NexusDB V2 Upscene
Productions http://www.upscene.com
Disclaimer: This message (including attachments) is confidential and may be privileged. If you have received it by mistake please notify the sender by return e-mail and delete this message from your system. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited. Please note that e-mails are susceptible to change. RxStrategies, Inc. shall not be liable for the improper or incomplete transmission of the information contained in this communication or for any delay in its receipt or damage to your system. RxStrategies, Inc. does not guarantee that the integrity of this communication has been maintained nor that this communication is free from viruses, interceptions or interference.
RECREATE TABLE TEST_1
(
TST D_TST_DOMAIN CHARACTER SET ASCII COLLATE ASCII
)
How do you override the character set of a domain?
-----Original Message-----
From: firebird-support@yahoogroups.com
[mailto:firebird-support@yahoogroups.com] On Behalf Of Thomas
Steinmaurer
Sent: Thursday, November 16, 2006 12:49 PM
To: firebird-support@yahoogroups.com
Subject: Re: [firebird-support] Create table NOT NULL and CHARACTER SET
> This works on 1.5 and 2.0Try:
>
> RECREATE TABLE TEST_1
> (
> TST CHAR(2) CHARACTER SET UTF8 COLLATE UNICODE );
>
> This doesn't work on 1.5 and 2.0
>
> RECREATE TABLE TEST_2
> (
> TST2 CHAR(2) NOT NULL CHARACTER SET UTF8 COLLATE UNICODE );
RECREATE TABLE TEST_2
(
TST2 CHAR(2) CHARACTER SET UTF8 NOT NULL COLLATE UNICODE );
--
Best Regards,
Thomas Steinmaurer
LogManager Series - Logging/Auditing Suites supporting InterBase,
Firebird, Advantage Database, MS SQL Server and NexusDB V2 Upscene
Productions http://www.upscene.com
Disclaimer: This message (including attachments) is confidential and may be privileged. If you have received it by mistake please notify the sender by return e-mail and delete this message from your system. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited. Please note that e-mails are susceptible to change. RxStrategies, Inc. shall not be liable for the improper or incomplete transmission of the information contained in this communication or for any delay in its receipt or damage to your system. RxStrategies, Inc. does not guarantee that the integrity of this communication has been maintained nor that this communication is free from viruses, interceptions or interference.