I am working on an iOS application that uses a SQLite database.
In the next release of my product, i would like to migrate a table column from TEXT
to BLOB
.
I plan to do a DROP TABLE
followed by a CREATE TABLE
(we can afford to lose the data, it is not an issue here)
My problem is : how can I check simply from Objective-C if a table's column type is TEXT
or BLOB
?