Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jenmerr

    SEO Friendly & Human Readable URLs

    I am looking to change a Coldfusion Dymnaic URL to a SEO Friendly / Human Readable URL. The URL looks like this at the moment: www.mywebsite.com/index.cfm?area=content&action=contentselect&menuid=1 I would like it to be more like www.mywebsite.com/aboutus Not sure what is the best way to...
  2. jenmerr

    Query to Select the Top Value

    Sorry just to update, I use the word top but really mean the Highest Bid. And when i said either query, i mean the first one i posted yesterday or the second one that i posted today..
  3. jenmerr

    Query to Select the Top Value

    Hi Thanks for your help. I need to find the highest Bid for each Car. A number of bids would be placed on a particular car so then i need to find out the winning bid that was placed on each car. Hope that makes sense.. I have another query looking at the Car end of things searching for the...
  4. jenmerr

    Query to Select the Top Value

    Hi I need some help in writing a query to select the top bit for each car in a query. The code that i have so far selects the top value but wont return each car. <cfquery name="qBidSelect1" datasource="#request.dsName#"> select top 1 Bid.Bid, Bid.CustomerID , Bid.TenderID ...
  5. jenmerr

    Error in Updating Query

    hi Thats why i mentioned the MS Access Unicode datasourse I have other websites that use this exact same code and works no problem, it's just this database has to have Access with Unicode to solve a character set problem.
  6. jenmerr

    Error in Updating Query

    This is the code: <cfoutput> UPDATE #form.tname# SET title = '#FORM.title#', content = '#FORM.content#', timestmp = #CreateODBCDateTime(Now())#, modBy = '#SESSION.userdet#' WHERE id = #FORM.id# </cfoutput> This is what is displayed when run: _________________________________ UPDATE...
  7. jenmerr

    Error in Updating Query

    Hi When you say initialize do you mean this <cfparam name="#form.tname#" default="">? My Datasource is MS Access with Unicode becuase i have a character set problem when i use MS Access in Coldfusion. From the Coldfusion Documentaion it says "Inserts and updates fail with the error "The field...
  8. jenmerr

    Error in Updating Query

    I changed the query slightly to this: <CFQUERY NAME="updateText" DATASOURCE="#APPLICATION.dsn#" MAXROWS="1"> UPDATE #form.tname# SET title = '#FORM.title#', content = '#FORM.content#', timestmp = #CreateODBCDateTime(Now())#, modBy = '#SESSION.userdet#' WHERE id = #FORM.id# </CFQUERY> Now...
  9. jenmerr

    Error in Updating Query

    Hi Tried CFOUTPUT and doesnt give the error i have been getting but the data i insert is not updated in the database?
  10. jenmerr

    Error in Updating Query

    Hi I am getting this error message below from this code: <CFQUERY NAME="updateText" DATASOURCE="#APPLICATION.dsn#" USERNAME="#APPLICATION.DB_UserName#" PASSWORD="#APPLICATION.DB_Password#" MAXROWS="1"> UPDATE #FORM.tName# SET Title = '#FORM.Title#', Content = '#FORM.content#', timeStmp =...
  11. jenmerr

    Missing argument name?

    HI I am getting this error below. I changed the datasource of the access database to be MS Access with Unicode because of a character set problem. Before i did this the page ran without any errors. Is there a different way of programming the below? Missing argument name. When using named...
  12. jenmerr

    SQL and Coldfusion - sql syntax for access

    The Data Type is Yes/No in the access database
  13. jenmerr

    SQL syntax for access

    Hi I am using Coldfusion with MS Access. The it's datasource is running on a setting called Access with Unicode. The code that runs perfectly in MS Access will not run under the new setting MS Access with Unicode. Here is an example <CFQUERY NAME="getMenu3" DATASOURCE="#APPLICATION.DSN#">...
  14. jenmerr

    SQL and Coldfusion - sql syntax for access

    Hi I am using Coldfusion with MS Access. The it's datasource is running on a setting called Access with Unicode. The code that runs perfectly in MS Access will not run under the new setting MS Access with Unicode. Here is an example <CFQUERY NAME="getMenu3" DATASOURCE="#APPLICATION.DSN#">...
  15. jenmerr

    Using Checkboxes and seaching through the results

    I have an enquiry form with a list of check boxes. In my search page it lists enquires that have been made. If a person select two or more it wont loop through the list and bring back the ones that were selected. Tried a number of queries and it starts returning nothing.. It will return the...

Part and Inventory Search

Back
Top