How to generate unique code in sqlite?

How to create unequal index in sqlite?

I am using vb.net to create tables.

+2


a source to share


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







All Articles