Update Sqlite GetFuncList

This commit is contained in:
sunkaixuan 2024-02-14 15:59:27 +08:00
parent a1e4c48506
commit ffe03b2271

View File

@ -277,7 +277,7 @@ AND sql LIKE '%"+tableName+"%'");
}
public override List<string> GetFuncList()
{
return this.Context.Ado.SqlQuery<string>(" SELECT name\r\nFROM sqlite_master\r\nWHERE type = 'table' AND name NOT LIKE 'sqlite_%' ");
return new List<string>();
}
public override List<string> GetIndexList(string tableName)
{