SQLite Modify Column

后端 未结 4 1396
迷失自我
迷失自我 2020-12-02 22:26

I need to modify a column in a SQLite database but I have to do it programatically due to the database already being in production. From my research I have found that in or

4条回答
  •  醉酒成梦
    2020-12-02 23:02

    That's one of the better-known drawbacks of SQLite (no MODIFY COLUMN support on ALTER TABLE), but it's on the list of SQL features that SQLite does not implement.

    edit: Removed bit that mentioned it may being supported in a future release as the page was updated to indicate that is no longer the case

提交回复
热议问题