drop table named Order

Issue #89 resolved
Former user created an issue

Originally reported on Google Code with ID 89 ``` What steps will reproduce the problem? 1. Drop table named Order by DROP button 2. 3.

What is the expected output? What do you see instead? table dropped

What version of the product are you using? On what operating system? 1.9.0

Please provide any additional information below. it solve put Order between `` DROP TABLE `Order` ```

Reported by `albertwifi` on 2012-02-09 15:40:51

Comments (2)

  1. Former user Account Deleted

    ``` it's about reserved system words. you also can't create column named 'name'. even within quotes. i am able to create and polpulate table with 'name' column in CLI, so it's a bug.

    sqlite> create table tbl1(name varchar(10), secondfield smallint);

    from cli it creates fine, and i can work with such a table from phpliteadmin too. ```

    Reported by `master@remort.net` on 2012-04-09 12:27:04

  2. Dane Iracleous

    ``` Fixed in v1.9.3 ```

    Reported by `diracleo` on 2012-06-02 08:35:32 - Status changed: `Fixed`

  3. Log in to comment