ColdFusion ORMExecuteQuery ORM 缺少映射
ColdFusion ORMExecuteQuery ORM missing mapping
我正在尝试使用 ORMExecuteQuery
。做这样的查询:
ORMExecuteQuery("select count(*) from Customer");
这显示错误。所以我现在将语句的复杂性降低到更小的程度
// This works
rc.Customers = EntityLoad("Customer");
// This crashes
rc.Customers2 = ORMExecuteQuery("from Customer");
我发现 ORMExecuteQuery() 和对象名称的大小写存在问题。
尝试使用
ORMExecuteQuery("from customer");
我正在尝试使用 ORMExecuteQuery
。做这样的查询:
ORMExecuteQuery("select count(*) from Customer");
这显示错误。所以我现在将语句的复杂性降低到更小的程度
// This works
rc.Customers = EntityLoad("Customer");
// This crashes
rc.Customers2 = ORMExecuteQuery("from Customer");
我发现 ORMExecuteQuery() 和对象名称的大小写存在问题。
尝试使用
ORMExecuteQuery("from customer");