在 c# 中使用 IDataReader 从数据库中提取与特定业务部门相对应的主机名列表,但无法找出问题所在。我猜测是SQL语句中的参数太多,或者这里的ExecuteReader方法可能不应该使用。我无法在目标数据库中创建 SP,因此只能以其他方式运行查询。任何帮助将不胜感激。
public static IDataReader GetCETHostsList()
{
string mySQL = @"SELECT distinct(dbo.Infrastructure.Hostname) dbo.Application_Infrastructure
INNER JOIN dbo.Applications ON dbo.Application_Infrastructure.ID = dbo.Applications.ID
INNER JOIN dbo.Infrastructure ON dbo.Application_Infrastructure.InfrastructureID = dbo.Infrastructure.InfrastructureId
WHERE Unit is not null
AND dbo.Applications.Unit like '%Terminal%'
AND (dbo.Infrastructure.Hostname like '%ST%' or dbo.Infrastructure.Hostname like '%TR%' )";
return DatabaseFactory.CreateDatabase("myDB").ExecuteReader(mySQL);
}