如何防止查询查询从 Coldfusion 中的 CFC 返回区分大小写的结果
How to prevent Query of Queries returning case sensitive results from CFC in Coldfusion
我在使用 Ben Nadel 的 QueryAppend.cfc 连接来自两个不同数据源的两个记录集时遇到问题。我取回的数据是正确的,但数据的顺序不是预期的。组合结果集的排序方式如下,所有结果都以附加到记录集底部的小写字母开头:
Screen grab of cfdump
我期待(并且需要)以下类型的排序:
苹果
艺术
瓶子
男孩
猫
币
飞镖
狗
代码如下:
<!---Calling Template--->
<cfquery name="getDataSet1" datasource="datasource1">
SELECT param1
FROM table1
</cfquery>
<cfquery name="getDataset2" datasource="datasource2">
SELECT param1
FROM table2
</cfquery>
<cfscript>
// Create object
TheUnionObject = createObject("component", "cfc/QueryAppend");
// Call the function
myUnionResult = TheUnionObject.QueryAppend(getDataSet1, getDataSet2);
</cfscript>
<!---Dump results--->
<cfdump var="#myUnionResult#">
<!---QueryAppend.cfc--->
<cfcomponent>
<cffunction name="QueryAppend" access="public" returntype="query"
output="false"
hint="This takes two queries and appends the second one to the first one.
Returns the resultant third query.">
<cfargument name="QueryOne" type="query" required="true" />
<cfargument name="QueryTwo" type="query" required="true" />
<cfset var LOCAL = StructNew() />
<cfquery name="LOCAL.NewQuery" dbtype="query">
(
SELECT
*
FROM
ARGUMENTS.QueryOne
)
UNION
(
SELECT
*
FROM
ARGUMENTS.QueryTwo
) ORDER BY Param1 ASC
</cfquery>
<cfreturn LOCAL.NewQuery />
</cffunction>
</cfcomponent>
我假设此默认排序行为是一些幕后 ColdFusion 代码。谁能告诉我如何更改此默认 ORDER BY 行为?
一个快速修复方法是在您的 select 语句中添加一个字段,将您要排序的字段值大写 (upper),然后按该字段排序,但仍会输出未封装的字段。大致如下:
select *,
upper(name) as upperName
from query
order by upperName
我在使用 Ben Nadel 的 QueryAppend.cfc 连接来自两个不同数据源的两个记录集时遇到问题。我取回的数据是正确的,但数据的顺序不是预期的。组合结果集的排序方式如下,所有结果都以附加到记录集底部的小写字母开头:
Screen grab of cfdump
我期待(并且需要)以下类型的排序:
苹果
艺术
瓶子
男孩
猫
币
飞镖
狗
代码如下:
<!---Calling Template--->
<cfquery name="getDataSet1" datasource="datasource1">
SELECT param1
FROM table1
</cfquery>
<cfquery name="getDataset2" datasource="datasource2">
SELECT param1
FROM table2
</cfquery>
<cfscript>
// Create object
TheUnionObject = createObject("component", "cfc/QueryAppend");
// Call the function
myUnionResult = TheUnionObject.QueryAppend(getDataSet1, getDataSet2);
</cfscript>
<!---Dump results--->
<cfdump var="#myUnionResult#">
<!---QueryAppend.cfc--->
<cfcomponent>
<cffunction name="QueryAppend" access="public" returntype="query"
output="false"
hint="This takes two queries and appends the second one to the first one.
Returns the resultant third query.">
<cfargument name="QueryOne" type="query" required="true" />
<cfargument name="QueryTwo" type="query" required="true" />
<cfset var LOCAL = StructNew() />
<cfquery name="LOCAL.NewQuery" dbtype="query">
(
SELECT
*
FROM
ARGUMENTS.QueryOne
)
UNION
(
SELECT
*
FROM
ARGUMENTS.QueryTwo
) ORDER BY Param1 ASC
</cfquery>
<cfreturn LOCAL.NewQuery />
</cffunction>
</cfcomponent>
我假设此默认排序行为是一些幕后 ColdFusion 代码。谁能告诉我如何更改此默认 ORDER BY 行为?
一个快速修复方法是在您的 select 语句中添加一个字段,将您要排序的字段值大写 (upper),然后按该字段排序,但仍会输出未封装的字段。大致如下:
select *,
upper(name) as upperName
from query
order by upperName