我使用Microsoft SQL Server Northwind演示数据库创建了示例代码。如果您无权访问此演示数据库,则可以使用一个简单的(MS-SQL)脚本来创建此问题的表和一行数据。

CREATE TABLE [dbo].[Products](
    [ProductID] [int] IDENTITY(1,1) NOT NULL,
    [ProductName] [nvarchar](40) NOT NULL,
    [SupplierID] [int] NULL,
    [CategoryID] [int] NULL,
    [QuantityPerUnit] [nvarchar](20) NULL,
    [UnitPrice] [money] NULL CONSTRAINT [DF_Products_UnitPrice]  DEFAULT (0),
    [UnitsInStock] [smallint] NULL CONSTRAINT [DF_Products_UnitsInStock]  DEFAULT (0),
    [UnitsOnOrder] [smallint] NULL CONSTRAINT [DF_Products_UnitsOnOrder]  DEFAULT (0),
    [ReorderLevel] [smallint] NULL CONSTRAINT [DF_Products_ReorderLevel]  DEFAULT (0),
    [Discontinued] [bit] NOT NULL CONSTRAINT [DF_Products_Discontinued]  DEFAULT (0),
 CONSTRAINT [PK_Products] PRIMARY KEY CLUSTERED
(
    [ProductID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[Products] ON
GO
INSERT [dbo].[Products] ([ProductID], [ProductName], [SupplierID], [CategoryID], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (1, N'Chai', 1, 1, N'10 boxes x 20 bags', 18.0000, 39, 0, 10, 0)
GO
SET IDENTITY_INSERT [dbo].[Products] OFF
GO


这是ColdFusion代码:

<cfset variables.useTempVar = false>

<cfquery datasource="Northwind2014" name="qryNWProducts">
SELECT TOP 1 * from Products;
</cfquery>

<cfdump var="#qryNWProducts#" label="qryNWProducts">

<cfset variables['stProduct'] = {}>
<cfloop index="vcColName" list="#qryNWProducts.columnlist#">
    <cfif variables.useTempVar>
        <cfset variables['temp'] = qryNWProducts[vcColName]>
        <cfset variables['stProduct'][vcColName] = variables.temp>
    <cfelse>
        <cfset variables['stProduct'][vcColName] = qryNWProducts[vcColName]>
    </cfif>
</cfloop>

<cfdump var="#variables['stProduct']#" label="variables['stProduct']">

<cfloop collection="#variables['stProduct']#" item="key"><cfoutput>
    variables['stProduct']['#key#'] JVM datatype = #getMetadata(variables['stProduct'][key]).getName()#<br>
</cfoutput></cfloop>

<br>
This always works:<br>
<cfset variables['aPhrase'] = "I ordered " &  variables.stProduct.ProductName & " for " & DollarFormat(variables.stProduct.UnitPrice) & ".">
<cfoutput>#variables['aPhrase']#<br></cfoutput>

<br>
With &quot;variables.useTempVar = false&quot;, the next line will throw a &quot;Complex object types cannot be converted to simple values. &quot; error.<br>
<cfset variables['aPhrase'] = "I ordered " &  variables['stProduct']['ProductName'] & " for " & DollarFormat(variables['stProduct']['UnitPrice']) & ".">
<cfoutput>#variables['aPhrase']#<br></cfoutput>


上面的代码在顶部有一个名为“ variables.useTempVar”的布尔变量,可以将其翻转以查看出现的错误。

看起来,从查询到结构的直接分配(当variables.useTempVar = false时)导致结构值具有JVM类型“ coldfusion.sql.QueryColumn”。

另一注:如果这行代码:

<cfset variables['stProduct'][vcColName] = variables.temp>


更改为:

<cfset variables['stProduct'][vcColName] = variables['temp']>


JVM数据类型将为“ coldfusion.sql.QueryColumn”。

当使用点符号temp变量分配查询字段时(当variables.useTempVar = true时); JVM数据类型是简单类型,与数据库列类型(java.lang.Integer,java.math.BigDecimal,java.lang.String等)非常匹配。

我还对这样的语句进行了实验,结果有些奇怪:

<cfset variables['stProduct'][vcColName] = qryNWProducts[vcColName].toString()>


这是问题。这是将简单值从查询传递到结构的最佳方法吗?强迫使用临时变量和点表示法使这项工作看起来很奇怪。

评论:我一直认为点表示法和关联数组表示法是等效的。此代码示例似乎与该观点相矛盾。

最佳答案

@Leigh是正确的,因为在对查询对象使用关联数组表示法时,您需要提供行号。因此,您将引用第1行,例如:qryNWProducts[vcColName][1]

至于你的问题


这是将简单值从查询传递到结构的最佳方法吗?


您确定需要结构吗?您的问题并未真正指定用例,因此完全有可能按原样使用查询对象会更好。

如果确实需要将其用作结构(并且由于使用的是ColdFusion 11),建议您查看serializeJSON/deSerializeJSON将其转换为结构。 serializeJSON具有一个新属性,该属性可以将查询对象正确序列化为结构的“ AJAX友好” JSON数组。然后,您可以将JSON反序列化为CF数组,如下所示:

NWProducts = deSerializeJSON( serializeJSON( qryNWProducts, 'struct' ) )[1];
它将返回该查询对象中第一行的结构表示形式。

尽管从the Adobe docs for serializeJSON并不明显,但第二个参数可以是以下之一:true|false|struct|row|column它将更改结果数据的格式。

这是使用上述技术展示每个serializeQueryAs选项的runnable example

将此类代码移入cfscript也是一种较好的做法。 queryExecute非常易于使用,并且使基于脚本的查询非常易于开发。有关如何开发基于脚本的查询的更多信息,请参见trycf.com上的How To Create a Query in cfscript教程。

最后的注意事项,这有点不合时宜,但是在命名变量时不使用Hungarian Notation是一种公认​​的最佳实践。

10-05 17:50