On 2/13/14, O.D. vidal <[email protected]> wrote: > I would like a field is not editable. What is the best solution? > > I want the name of the country can not be changed.
You can put all the tables you want to be not changable to a separate database file which you attach as read-only. Use the ATTACH statement with the URI filename syntax, as documented in "http://sqlite.org/uri.html" , to attach the database as read-only. Of course, when you initially create and fill the table, you have to attach the same database file in read-write mode, but later your application can open it read-only. Ambrus _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

