Possible Duplicate:
ALTER COLUMN in sqlite
I want to change the data type of a column while upgrading. Any idea how to change the data type of a column.
While using Alter table Alter column statement it is giving a syntax error?
I want to change the data type of a column while upgrading. Any idea how to change the data type of a column. While using Alter table Alter column statement it is giving a syntax error? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
As it is stated in this page http://www.sqlite.org/lang_altertable.html Sqlite does not support the As I see it you have to store the values of your columns somewhere else, add a new column, rewrite the stored values into the new column, and then drop your old column. |
|||
|
|
|
You can't, SQLite's ALTER TABLE is quite limited:
so you can rename a table with ALTER TABLE or you can add a single new column. On the upside (at least for you), SQLite's notion of "type" is pretty loose and depends more on how you use something than how you've defined the column; for example:
so you can put data of any type in a column of any other type. However, if you're using a tool that checks the table's schema in order to determine how to convert the table's data into native types, then you'll need to simulate an ALTER TABLE ALTER COLUMN. AFAIK, the only way to do that is the ugly way:
I'd do it the ugly way and ignore SQLite's lax type system; if I find |
|||
|
|