90
|
Chapter 6
Using Reports to Query and Update Data Sources
Setting Up the Query
First we’ll build the
<CFQUERY>
statement. If your map links to a table called
Parcel_Data
through a data source
Assessor
,
<CFQUERY>
will look like
this:
<CFQUERY NAME="get_parcel_info" DATASOURCE="Assessor">
SELECT * FROM Parcel_Data
</CFQUERY>
The
NAME
attribute specifies the name of the ColdFusion query. This name
can be anything you want, as long as it matches the name specified later in
<CFOUTPUT>
. The
DATASOURCE
attribute is the OLE DB data source name
(DSN), in this case
Assessor
. Between the
<CFQUERY>
beginning and end
tags is a SQL statement specifying which part of the table you want to look
at (this selection is known as a
recordset
.) In this case, we’re selecting every-
thing (
*
) from the
Parcel_Data
table.
Controlling the Output
Now we’ll assemble the
<CFOUTPUT>
statement. If you want to display the
parcel number, owner’s name, and year built, your tag will look like this:
<CFOUTPUT QUERY="get_parcel_info">
<P>Parcel Number: #APN#<BR>
<P>Owner Name: #Owner_Name#<BR>
<P>Year Built: #Year_Built#</P>
</CFOUTPUT>
The
QUERY
attribute tells ColdFusion which recordset you’d like to display;
this attribute matches the
NAME
you specified in
<CFQUERY>
. The names
within pound signs (
#APN#
,
#Owner_Name#
,
#Year_Built#
) are
ColdFusion variables that match column names in the database table (for
example,
#APN#
refers to the
APN
column). Everything else is straight HTML.
Seeing the Results
Now we’re ready to load the page in the browser.
However, because this particular table has more than 5,000 records, selecting
everything in it might not be such a good idea. Let’s limit the output by
showing only houses built in 1963. To do so, go back to
<CFQUERY>
and
change the SQL statement to the following:
SELECT * FROM Parcel_Data Where Year_Built = '1963'
Содержание 15606-011408-9300 - MAP R6.3 UPG
Страница 1: ...15306 010000 5060 October 2001 Autodesk MapGuide Release 6 Developer s Guide ...
Страница 6: ...vi ...
Страница 16: ...16 ...
Страница 30: ...30 ...
Страница 84: ...84 ...
Страница 134: ...134 ...
Страница 202: ...202 ...