Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
hmanvel #1
Stuck - Jeffrey Bardzell Book MX2004 w/asp,coldfusion,php
Have struggled thru to chapter 12 of referenced book. Now at a point where I
cannot continue as the code doesnt work. I have triple checked everything,
hoping someone can help. The following code:
re_tourDetail.Source = "SELECT * FROM tbl_tours INNER JOIN tbl_country ON
tbl_country.countryID=tbl_tours.country WHERE tbl_country.region=" &
Request.QueryString("RegionID") & " ORDER BY tbl_country.countryName"
re_tourDetail.CursorType = 0
re_tourDetail.CursorLocation = 2
re_tourDetail.LockType = 1
re_tourDetail.Open()
returns the following error message:
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in
query expression 'tbl_country.region='.
/newland/tours_detail.asp, line 14
Line 14 is the last line of code posted above. Missing operator? Does
anybody know whats wrong?
Thanks,
Harry Manvel
hmanvel Guest
-
Error Message:C:\Program Files\Macromedia\Dreamweaver MX2004\Configuration\ServerModels\ColdFusion\dwscriptsServerImpl.
I am suddenly getting this error message in Dreamweaver: At the line 576 of file "C:\Program Files\Macromedia\Dreamweaver MX... -
Book about: Flex 2.0 and Coldfusion 7
Hi: i searched a lot to find some resources about Flex 2.0 and Coldfusion 7, but couldn't find any book out there in the market. Do you know any or... -
CFC Query - stuck, stuck, stuck
I am once again trying to use Dreamweaver. Here I want to create my first CFC. I'm following the online tutorial Building Your First Database... -
ColdFusion MX 7 (Book) "Traning from the Source"
Hello, can anyone from Macromedia please tell me if Macromedia will be coming out with a book on the new ColdFusion MX 7 'Training from the Source'... -
No code hints for new ColdFusion MX 7 in Dreamweaver MX2004
I had just downloaded ColdFusion MX 7. And I was viewing one of the online tutorials dealing with the <cfform>. I tried experimenting with the... -
delaneypub #2
Re: Stuck - Jeffrey Bardzell Book MX2004w/asp,coldfusion, php
I don't have the book with me at the moment, but I'll take a guess at it. If
the value of Request.QueryString("RegionID") is blank or contains spaces, that
will cause a syntax error in your SQL. You can get around that by enclosing
that value in single quotes. Snippet:
...tbl_country.region='" & Request.QueryString("RegionID") & "' ORDER...
delaneypub Guest
-
hmanvel #3
Re: Stuck - Jeffrey Bardzell Book MX2004w/asp,coldfusion, php
Thanks much. Unfortunately that didnt work.
hmanvel Guest



Reply With Quote

