摘要:bool create; using (Mutex mu = new Mutex(true, Application.ProductName, out create)) { if (create) { Application.EnableVisualStyles(); Application.Set
阅读全文
posted @ 2017-05-16 14:20
05 2017 档案
摘要:bool create; using (Mutex mu = new Mutex(true, Application.ProductName, out create)) { if (create) { Application.EnableVisualStyles(); Application.Set
阅读全文
posted @ 2017-05-16 14:20
摘要:1、聚集索引一个表只能有一个,而非聚集索引有个表能有多个 2、聚集索引和非聚集索引的根本区别是表记录的排列顺序和与索引的排列顺序是否一致,其实理解起来非常简单,还是举字典的例子:如果按照拼音查询,那么都是从a-z的,是具有连续性的,a后面就是b,b后面就是c, 聚集索引就是这样的,他是和表的物理排列
阅读全文
posted @ 2017-05-16 14:19
|
||