Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 44303 - 44332 of 44530   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
44303
What happens if you have index.cfm?article_id=1A...
John Bartlett
wyntermoonwolf
Offline Send Email
Jun 1, 2009
8:27 pm
44304
Hi John, That throws an error, (data type mismatch) which I catch with an exception page. This is working for my re-occuring single quote problem; I have in...
tmallan
Offline Send Email
Jun 1, 2009
10:23 pm
44305
My point is - it's the same issue with the single quote as with the letter A. You are expecting a numeric value but the user can enter any value they wish....
John Bartlett
wyntermoonwolf
Offline Send Email
Jun 1, 2009
10:53 pm
44306
Thanks much for taking the time to write a paragraph. I understand your point. I will forget about "fixing" url's - I'll relocate to a help/search page. Would...
tmallan
Offline Send Email
Jun 2, 2009
1:49 am
44307
I think that structKeyExists is more efficient than isDefined. <cfif structKeyExists(url, "article_id") and not isNumeric(url.article_id)>  -hankcfman ...
Hank Miller
hankcfman
Online Now Send Email
Jun 2, 2009
3:14 am
44308
That is perfect. You always want to think about how a malicious user could screw things up. There's a lot of attacks targeting ColdFusion sites trying SQL...
John Bartlett
wyntermoonwolf
Offline Send Email
Jun 2, 2009
6:31 am
44309
I like this discussion and it's making me rethink a few things. I also get a fair amount of errors logged because of the single quote. Because the string is...
Catherine Mortali
cmp_boston
Offline Send Email
Jun 3, 2009
7:31 pm
44310
The first place I would look is the code that generated the input field for "category". I would say the ' is coming from there and probably a typo in the...
John Bartlett
wyntermoonwolf
Offline Send Email
Jun 3, 2009
7:55 pm
44311
Where do you start? I would start by not passing any url or hidden form variables and passing them through sessions variables. Then I would make sure that I...
Hank Miller
hankcfman
Online Now Send Email
Jun 3, 2009
9:44 pm
44312
Hank, You're 100% right... Old code and I will admit to laziness to get it updated. --Catherine _____ From: coldfusion-howto@yahoogroups.com ...
Catherine Mortali
cmp_boston
Offline Send Email
Jun 4, 2009
3:28 pm
44313
Seems so simple, but this is not working: <CFQUERY Name="getmaxbid" Datasource="#application.dsn#" > Select max(bidamount) as maxbidamount, pagesubid from...
raehm
Offline Send Email
Jun 5, 2009
1:14 pm
44314
Try: Select max(bidamount) as maxbidamount, pagesubid from auction group by pagesubid having pagesubid = #pagesubid# ... -- John Bliss IT Professional ...
John M Bliss
houston_blue...
Offline Send Email
Jun 5, 2009
1:25 pm
44315
Sorry, but <CFQUERY Name="getmaxbid" Datasource="#application.dsn#" > Select max(bidamount) as maxbidamount, pagesubid from auction group by pagesubid having...
raehm
Offline Send Email
Jun 5, 2009
1:33 pm
44316
got it. Thanks,...
raehm
Offline Send Email
Jun 5, 2009
1:41 pm
44317
I would like to get some input on the effect of cfc files on server resources on a semi shared server, compared to using queries and such directly in the...
tonyroc
puppybear101
Offline Send Email
Jun 6, 2009
5:17 pm
44318
Hi All, I have an excel spreadsheet that lists details of apartment owners that I need to insert into my sql table if the unit_number is a numeric value the...
SAMARIS Software
austaccomm
Offline Send Email
Jun 10, 2009
11:20 am
44319
What does your query look like? ... From: coldfusion-howto@yahoogroups.com To: coldfusion-howto@yahoogroups.com, cfaussie@googlegroups.com Subject:...
John Bartlett
wyntermoonwolf
Offline Send Email
Jun 10, 2009
3:52 pm
44320
Hi John, The code below inserts blank values for #unit_number# when the value has a character at the front or the end of the number eg A541 or 543B When the ...
SAMARIS Software
austaccomm
Offline Send Email
Jun 10, 2009
6:01 pm
44321
And now, you should change your database username/password, since it is out there for all to see... <cfquery name="Insert_ A_Property" datasource=" #ds#"...
Ross Valenti
rossv1
Offline Send Email
Jun 10, 2009
6:04 pm
44322
The query looks fine, try outputing the value of "unit_number" before the query to see what it's being set to. Since you really should change your database...
John Bartlett
wyntermoonwolf
Offline Send Email
Jun 10, 2009
7:05 pm
44323
In the applicatiion I'm building, I have three pages of forms. I want to dynamically create session values and store them to keep the form stuff together. ...
ihatespam22222
Offline Send Email
Jun 13, 2009
1:46 pm
44324
There are a couple of ways to skin this cat. Here is one. <cfscript>    tmpListOfFieldsNotToInclude="fieldnames,go";         for(e in form)      ...
Hank Miller
hankcfman
Online Now Send Email
Jun 13, 2009
4:56 pm
44325
Hi, I have a lot of data that are comma separated and i want to enter them into a database such that each comma separated value is entered into a new row....
verygreenboi
Offline Send Email
Jun 14, 2009
7:16 pm
44326
If there are no quotes involved to "escape" the comma, then there are a couple ways you can do it. The easiest would be: <CFLOOP index="item"...
John Bartlett
wyntermoonwolf
Offline Send Email
Jun 14, 2009
8:37 pm
44327
Hi all, I am looking for a Coldfusion job from 6 months.. could anybody pls.let me know of any Coldfusion Openings in and around CALIFORNIA. i have around 8...
Chava Sreedhar
scorpionn_king
Offline Send Email
Jun 15, 2009
5:04 pm
44328
I have a content management system that I am trying to enhance with the following functionality: The ability for a user to extend his/her login session if the...
ngu_nyindem
Online Now Send Email
Jun 15, 2009
8:15 pm
44329
Look into JavaScript timers. -John...
John Bartlett
wyntermoonwolf
Offline Send Email
Jun 15, 2009
9:46 pm
44330
I have to read tables from two different datasources, so I us QoQ My first query : <cfquery name="qry1" datasource="db1"> select table1.name, table1.phone, ...
Uraidiot
uraidiot2000xyz
Offline Send Email
Jun 16, 2009
2:27 pm
44331
You can query two different data sources within the same query and still use your left join (right join, inner join, etc). At work, we query Oracle and SQL...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Jun 16, 2009
2:45 pm
44332
Can you show me how to query two diffeent datasources within the same query ? I have never done that before, and since cfquery tag has only one datatsource,...
Uraidiot
uraidiot2000xyz
Offline Send Email
Jun 16, 2009
6:39 pm
Messages 44303 - 44332 of 44530   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help