Forum: ColdFusion Sep 11th, 2009 |
| Replies: 1 Views: 1,096 The lock is written into the query. You'll need to check into the correct syntax for your specific database. |
Forum: ColdFusion Aug 2nd, 2009 |
| Replies: 2 Views: 1,370 Why do you need regex for this? Can you not use basic string functions like LEFT, MID, and RIGHT? |
Forum: ColdFusion Feb 25th, 2009 |
| Replies: 2 Views: 1,391 Have you added a loop to display the output?
<cfquery name="players" datasource="connsilvereagles">
SELECT *
FROM player
ORDER BY playernumber DESC</cfquery>
<cfoutput>
<table>
<cfloop... |
Forum: ColdFusion Jan 6th, 2009 |
| Replies: 1 Views: 840 Try the CFFormProtect:
http://cfformprotect.riaforge.org/ |