ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/testsuite/resources/Test04.sql
Revision: 315
Committed: Thu Feb 25 11:56:36 2021 UTC (3 years, 9 months ago) by tony
Content type: application/sql
File size: 418 byte(s)
Log Message:
Updated for IBX 4 release

File Contents

# Content
1 Create Table IBXTest (
2 TableKey Integer not null,
3 F1 Smallint,
4 F2 Float,
5 F3 Double Precision,
6 F4 Decimal(9,3),
7 F5 Decimal(18,4),
8 F6 Date,
9 F7 Timestamp,
10 F8 Char (2),
11 F9 VarChar(256),
12 F10 Blob,
13 F11 BigInt,
14 "f12" Integer,
15 F13 Time,
16 F14 Blob sub_type text,
17 MyArray Integer [0:16],
18 "GRANTS" VarChar(20),
19 "My Field" VarChar(32),
20 "MY Field" VarChar(32),
21 Primary Key(TableKey)
22 );
23
24 Create Generator IBXGen;