wcboyd
Registered User.
- Local time
- Today, 17:51
- Joined
- Aug 30, 2004
- Messages
- 50
Hello All,
I am trying to create a table in access 2003 using DDL, but I am having a wee problem with one of the data types. Decimal to be precise.
Here is my ddl:
The only line giving me fits is the "Fld_Decimal".
What am I doing wrong here?
Thanks,
I am trying to create a table in access 2003 using DDL, but I am having a wee problem with one of the data types. Decimal to be precise.
Here is my ddl:
Code:
CREATE TABLE SampleDataType (
Fld_Txt_50 VARCHAR(50),
Fld_Txt_100 VARCHAR(100),
Fld_Memo LONGCHAR,
Fld_Long_Integer INTEGER,
Fld_Byte BYTE,
Fld_Integer SMALLINT,
Fld_Single REAL,
Fld_Double DOUBLE,
Fld_Replication_Id GUID,
Fld_Decimal DECIMAL(18,3),
Fld_Date_Time DATETIME,
Fld_Currency CURRENCY,
Fld_AutoNumber COUNTER NOT NULL,
Fld_Yes_No BIT NOT NULL,
Fld_OLE_Object LONGBINARY
);
The only line giving me fits is the "Fld_Decimal".
What am I doing wrong here?
Thanks,