How to generate unique code in sqlite?
1 answer
To create a non-ideal index, you must use the CREATE INDEX statement without the UNIQUE keyword. See the documentation for more information.
http://www.sqlite.org/lang_createindex.html
UPDATE: If you are using System.Data.SQLite it has Visual Studio design time support, so you can use it to create indexes with Visual Studio.
+3
a source to share