Accessibility
 
Home / Products / UltraDev / Support / Adding Dynamic Content
Dreamweaver UltraDev Icon Macromedia Dreamweaver UltraDev Support Center - Customizing Dreamweaver UltraDev
Defining a filtered recordset

To retrieve and display a record, you must first define a filtered recordset for the results page. In this example, a recordset called rsGE_SURVEY will be created from the database table DYNAMIC_SURVEY using the following columns:

FNAME
LNAME
FINISHED_ONE
LIKED_ONE
FINISHED_TWO
LIKED_TWO
FINISHED_THREE
LIKED_THREE

To define the filtered recordset:

1 Open the results page in Dreamweaver UltraDev.
2 In the Data Bindings panel (Window > Data Bindings), click the plus (+) button and choose Recordset (Query).
The Recordset dialog box appears.

If the advanced Recordset dialog box appears, click the Simple button to open the simple Recordset dialog box.
3 Name the recordset and specify where the data you want to update is located using the Connection and Table pop-up menus.

4 Click the All option. (It should be selected by default.)
If your table contains more columns than you want to include in a particular recordset, click the Selected option and select only those columns you want to include. Control-click (Windows) or Command-click (Macintosh) to select several columns.
5 Configure the Filter area so that the values of a table column match the search parameter passed by the search page.
Choose a table column from the Filter pop-up menu. This search page asks for a book club member's last name, so the chosen table column is LNAME. This ensures that the results page will only include the record that matches the search parameter (the member's last name).
From the pop-up menu beside the first menu, choose the equal sign. (It should be the default.)
From the third pop-up menu, choose the source of the search parameter. Because this search page uses the GET method, the chosen source is URL Parameter. The search value will be passed to the results page in the form of a URL parameter.
In the last text box, enter the name of the form object used to collect the search parameter on the search page. If your search form uses a text field to conduct the search, this is the name of the text field.
You can get the name of the search text field by switching back to your search page and viewing the text field's Property inspector (Window > Properties).
Here is the search form text field's Property inspector.
The text field "txtLname" passes a specific URL parameter on to the results page.
Here is the completed results page filter area.

6 Click OK.
The results page now contains a filtered recordset. The page will generate a result that corresponds to the information submitted by the search page.

To Table of Contents Back to Previous document Forward to next document