Ask a Question related to Dreamweaver AppDev, Design and Development.
-
tollesbury #1
Linking text files
I have two text files, one with product availability and the other with pricing
and want to join the two together to produce a price list. I have created two
recordsets using txt drivers and this works fine. When trying to create another
recordset with a JOIN between the two files I can't.
Is it just a naming issue in the SQL or is it impossible?
Andrew
tollesbury Guest
-
Linking two PDF files
Hi, I'm really new to this platform. I have the following requirements and I want to verify if it's really doable through javascript or even Adobe... -
Linking web files
I have a set of files that make up a complete web site on CDROM (or hard drive). I want to link this site to a page in my overall web. When I linked... -
Linking to external files
I'm having the exact same problem - I can't break Contribute's default behavior of re-arranging the location of linked documents. My company has... -
Linking to external files
I see that this topic has come up several times before - once in 2004 with a Macromedia rep. saying that this has been a "popular request for future... -
linking to files
When you link to a file from a Publisher web site, then save as a web page (or in my case "export to web page" in Publ 2002), the path for the... -
Paul Whitham TMM #2
Re: Linking text files
For a join to work both files must have exactly the same fields names and
field types.
--
Regards
Paul Whitham
Macromedia Certified Professional for Dreamweaver MX2004
Valleybiz Internet Design
[url]www.valleybiz.net[/url]
Team Macromedia Volunteer for Ultradev/Dreamweaver MX
[url]www.macromedia.com/support/forums/team_macromedia[/url]
"tollesbury" <webforumsuser@macromedia.com> wrote in message
news:d0kme3$p3k$1@forums.macromedia.com...pricing> I have two text files, one with product availability and the other withtwo> and want to join the two together to produce a price list. I have createdanother> recordsets using txt drivers and this works fine. When trying to create> recordset with a JOIN between the two files I can't.
> Is it just a naming issue in the SQL or is it impossible?
>
> Andrew
>
Paul Whitham TMM Guest
-
tollesbury #3
Re: Linking text files
I'm not sure here how I can determine what the field names and types are they
are raw text files.
Below is what I would expect it to be but I get 'syntax error in JOIN
expression'
SELECT * FROM Parts.txt as parts, PartsPrices.txt as prices LEFT JOIN
prices.Scale ON parts.Scale = prices.Scale
Both files have field names in the first line and I have Scale is the first
field in prices.txt and the last of 6 fields in parts.txt
Regards,,
Andrew Gilbert
tollesbury Guest
-
Michael Fesser #4
Re: Linking text files
.oO(tollesbury)
Try>I'm not sure here how I can determine what the field names and types are they
>are raw text files.
>
> Below is what I would expect it to be but I get 'syntax error in JOIN
>expression'
>
> SELECT * FROM Parts.txt as parts, PartsPrices.txt as prices LEFT JOIN
>prices.Scale ON parts.Scale = prices.Scale
SELECT *
FROM Parts.txt AS parts
LEFT JOIN PartsPrices.txt AS prices ON parts.Scale = prices.Scale
Micha
Michael Fesser Guest



Reply With Quote

