开发者

How to create a non-unique index in sqlite?

开发者 https://www.devze.com 2022-12-30 17:01 出处:网络
How to create a non-unique index in sqlite? I开发者_开发知识库\'m using vb.net to create the tables.To create a non-unique index you would use the CREATE INDEX statement without the UNIQUE keyword. S

How to create a non-unique index in sqlite?

I开发者_开发知识库'm using vb.net to create the tables.


To create a non-unique index you would 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 the System.Data.SQLite provider, it has design time support in Visual Studio, so you can use it to create your indexes via Visual Studio.

0

精彩评论

暂无评论...
验证码 换一张
取 消