Browse Source

Update Sqlite

pull/12/MERGE
sunkaixuan 6 years ago
parent
commit
108b0c7a03
  1. 17
      Src/Asp.Net/SqlSugar/Realization/Sqlite/DbMaintenance/SqliteDbMaintenance.cs

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

@ -166,7 +166,7 @@ namespace SqlSugar
{
get
{
throw new NotImplementedException();
throw new NotSupportedException();
}
}
@ -174,7 +174,7 @@ namespace SqlSugar
{
get
{
throw new NotImplementedException();
throw new NotSupportedException();
}
}
@ -182,7 +182,7 @@ namespace SqlSugar
{
get
{
throw new NotImplementedException();
throw new NotSupportedException();
}
}
@ -190,7 +190,7 @@ namespace SqlSugar
{
get
{
throw new NotImplementedException();
throw new NotSupportedException();
}
}
@ -198,7 +198,7 @@ namespace SqlSugar
{
get
{
throw new NotImplementedException();
throw new NotSupportedException();
}
}
@ -206,7 +206,7 @@ namespace SqlSugar
{
get
{
throw new NotImplementedException();
throw new NotSupportedException();
}
}
#endregion
@ -227,7 +227,10 @@ namespace SqlSugar
});
}
public override bool AddRemark(EntityInfo entity)
{
return true;
}
private List<DbColumnInfo> GetColumnsByTableName(string tableName)
{
string sql = "select * from " + tableName + " limit 0,1";

Loading…
Cancel
Save