Browse Source

Sqlite support sql index

pull/2/head
skx 4 years ago
parent
commit
1c4838167b
  1. 6
      Src/Asp.Net/SqlSugar/Realization/Sqlite/DbMaintenance/SqliteDbMaintenance.cs

6
Src/Asp.Net/SqlSugar/Realization/Sqlite/DbMaintenance/SqliteDbMaintenance.cs

@ -189,7 +189,7 @@ namespace SqlSugar
{ {
get get
{ {
return "alter table {0} rename to {1}"; return "CREATE {3} INDEX Index_{0}_{2} ON {0}({1})";
} }
} }
@ -197,7 +197,7 @@ namespace SqlSugar
{ {
get get
{ {
throw new NotSupportedException(); return "SELECT count(*) FROM sqlite_master WHERE name = '{0}'";
} }
} }
protected override string AddDefaultValueSql protected override string AddDefaultValueSql
@ -211,7 +211,7 @@ namespace SqlSugar
{ {
get get
{ {
throw new NotSupportedException(); return "SELECT count(*) FROM sqlite_master WHERE name = '{0}'";
} }
} }
#endregion #endregion

Loading…
Cancel
Save