pharo-rdbms / Pharo-SQLite3

Community-owned official SQLite3 binding for Pharo
MIT License
22 stars 20 forks source link

Handle Table and column names with spaces #102

Closed astares closed 1 year ago

astares commented 1 year ago

SQLite3 is able to handle

CREATE TABLE "ANOTHER TABLE"
(
    [ID] INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
    [SOME NAME] NVARCHAR(120)
)

At the moment this gives issues when opening the inspector or asking for columns.

We need to reflect this in the sql queries.