Menu

#155 Column name incorrect after create table.

Unassigned
wont-fix
nobody
DDL (1)
1
2021-09-15
2021-09-06
Sproketboy
No
CREATE TABLE Customers ( 
 [Customer ID] varchar(10) PRIMARY KEY NOT NULL, 
 [Company Name] VARCHAR(30) NULL, 
 [Contact Name] VARCHAR(30) NULL, 
 [Contact Title] VARCHAR(10) NULL, 
 [Address] VARCHAR(40) NULL, 
 [City] VARCHAR(30) NULL, 
 [Region] VARCHAR(10) NULL, 
 [Postal Code] VARCHAR(10) NULL, 
 [Country] VARCHAR(2) DEFAULT 'US', 
 [Phone] VARCHAR(30) NULL, 
 [Fax] VARCHAR(30) NULL, 
 [Status] CHAR(1) NULL, 
 [Date Registered] Timestamp DEFAULT NOW(), 
 [Date Of Last Order] DATE, 
 [Test Local Date] date, 
 [Test Local DateTime] Timestamp 
)

When you execute this command the column "Test Local DateTime" becomes "TEST LOCAL TIMESTAMP" in the database. Happens also with "Test Local Date Time"

Discussion

  • James Ahlborn

    James Ahlborn - 2021-09-06

    if you executed a sql statement, then you were probably using another library with jackcess. my guess would be ucanaccess. you should file a bug with that project first.

     
    • Sproketboy

      Sproketboy - 2021-09-08

      So you can't reproduce? Just try it and let me know. I'll check with ucanaccess.

       
  • James Ahlborn

    James Ahlborn - 2021-09-15
    • status: open --> wont-fix
     

Log in to post a comment.

MongoDB Logo MongoDB