Skip to main content
Known Participant
April 30, 2010
Question

Display value from recordset

  • April 30, 2010
  • 1 reply
  • 799 views

Hi,

This is prob a simple thing and i know i have done this before but for the life of me cant remember.

I have on my page 2 recordsets.

one displays from my table "Clients"

the other from my table "Regions"

in my insert into clients table i chose the Region name as to display when inserting but to use the ID for the value to be inserted.

Now when i view my clients recordset set i see "Region = 80" when it should display "London"

how can i display London instead of the value "80" ??

many thanks

This topic has been closed for replies.

1 reply

Participating Frequently
April 30, 2010

You only need one recordset. Create an advanced recordset and join the clients table to the regions table.

deansy55Author
Known Participant
April 30, 2010

appreciate that so would it be

JOIN clients.region = region.name

??

or along those lines?

cheers

Date: Fri, 30 Apr 2010 12:49:28 -0600

From: forums@adobe.com

To:

Subject: Dreamweaver Application Development Display value from recordset

You only need one recordset. Create an advanced recordset and join the clients table to the regions table.

>

Participating Frequently
April 30, 2010

Well that's not the correct sql syntax but yes, those are the tables and columns you would join.