Ask a Question related to Dreamweaver AppDev, Design and Development.
-
RayK #1
SQL qury works in access but not dreamweaver
I am using InterAKT dynamic charts extension to create a chart on a page. The
chart is to show number of meetings per month. The following SQL works in
Access...
SELECT DatePart("m",[Start]) AS MonthNo, MonthName(DatePart("m",[start]),True)
AS [Month], Count(Journal.Type) AS Meetings
FROM Journal
WHERE (((Journal.Type)="Meeting With Client"))
GROUP BY DatePart("m",[Start])
HAVING (((DatePart("m",[Start])) Between 1 And DatePart("m",Now())))
ORDER BY DatePart("m",[Start]);
However, in Dreamweaver when creating a recordset, I get an error
saying...'Undefined function MonthName in Expression'.
Can anyone tell me how to fix this?
Tahnks,
Ray Keattch
RayK Guest
-
Query Works in ACCESS DB but not on Front End
Okay...i am trying to run a query to view people that are overdue in there medical appts. i did the <cfoutput> in place of <cfquery> and ran the... -
Join Query works in access but not via ColdFusion
I have a query I built with the query builder in Access and through access it works fine. here is the query: SELECT appUsers.AppId,... -
DB access SQL2000 works usually
We are running several web sites with the identical code. On just ONE site, when we hit this query, we get this error. select so.professional_id,... -
Dreamweaver 2004 web page works on pc; not on a Mac
I have created the following web site: www.psychelp-sos.com.au. The home page works fine on a pc, but not on a Mac. The spacing and some of the fonts... -
Insert fails on access that I know works...
Folks, I use PHP to write my form data to MySQL. I have a database with about ten tables. I'm trying to fill one table with some dummy data... -
Julian Roberts #2
Re: SQL qury works in access but not dreamweaver
Certain functions available in Access are not available when using the Jet
engine. Use the Format() function instead, eg
Format([Date],'mmmm') AS [Month]
--
Jules
[url]http://www.charon.co.uk/charoncart[/url]
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
Julian Roberts Guest
-
RayK #3
Re: SQL qury works in access but not dreamweaver
I have put the format command around the items in the query but I am still getting the errors. Could you possible show me how my query should appear in Dreamweaver?
Thanks,
Ray Keattch.
RayK Guest



Reply With Quote

