I read that it is not possible to change the text encoding of a database after it has been created and any attempt to do so will be silently ignored.(from here)
Frome this post, to create main database,say 'databasename.db' in SQLite, we have to type following in command prompt :
sqlite3 databasename.db
which creates the database and displays sqlite shell as :
C:\Documents and Settings\Administrator>sqlite3 AudioData.db
SQLite version 3.7.11 2012-03-20 11:35:50
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>
In this case, how to set PRAGMA encoding ? How can I give PRAGMA command before create database command since the sqlite shell starts after create database command?? Thanks in advance!