Forum: ColdFusion May 6th, 2008 |
| Replies: 1 Views: 2,532 I managed to do what I wanted by calling java directly. |
Forum: ColdFusion May 1st, 2008 |
| Replies: 6 Views: 3,245 At first glance - looks like you have a typo:
<input type="hidden" name="strag_goal" value="1"> <input type="hidden" name="strat_ob" value="1.1">
name="strat_obj" ?? |
Forum: ColdFusion Apr 30th, 2008 |
| Replies: 2 Views: 2,871 cmhamton has provided the solution - but just to expand:
So as to open the function to any form and any form objects:
function toggleObj(frmFld,frmBtn)
{
//frmFld = the Form Field to check... |
Forum: ColdFusion Apr 30th, 2008 |
| Replies: 1 Views: 2,532 Hello Experts
I have a CF app (MX 6.1) that creates a text file, inserts some data (mainly numerical values along with a text header and footer), zip/encrypt/password protect with Winzip command... |
Forum: ColdFusion Oct 17th, 2005 |
| Replies: 1 Views: 9,335 OK - I figured it out. You cannot perform a where/like query on an ORACLE long datatype as it expects an integer. I changed the datatype to a CLOB and then retrieved the field into a temp var. I then... |
Forum: ColdFusion Oct 7th, 2005 |
| Replies: 2 Views: 2,961 ok - if i'm hearing you right:
First thing is to request the actual cols you want - good practice in case the schema changes in the future.
Next - I can't see where you are getting the value '1'... |
Forum: ColdFusion Oct 7th, 2005 |
| Replies: 2 Views: 4,783 Torch7 is correct - You most definitely don't have JVM installed. It's bundled with the ltaes JREs from SUN.
Get it here: http://java.com/en/download/manual.jsp
Unfortunately MS dont bundle... |
Forum: ColdFusion Oct 7th, 2005 |
| Replies: 1 Views: 9,335 Hi Folks!
Wonder if you can help??
I need to know a way of updating a column in Oracle (datatype: long) but keep the existing data so like an append. Am using Coldfusion to write to Oracle and I... |