Re: Number field displays differently on two systems.
es336td wrote: Understood... but why does it appear on one system as 123.87654321 and the other as 123,87700000? The code and databases are identical except for the data source name.I wouldn't know...
View ArticleCFwheels WHERE query
I am learning CFwheels recently. Am able to print out all my items from a database in a loop with this line in a controller.. <cfset queryall = model("equips").findAll(order="name")> But I want...
View ArticleRe: CFwheels WHERE query
I am answering my own question... Fixed it - <cfset appequips = model("equips").findAll(WHERE "status=In")> to <cfset appequips = model("equips").findAll("status='In'")>
View ArticleRe: Number field displays differently on two systems.
I remove all designation and set to just NUMBER. From Oracle documentation...NUMBER(p,s) Number having precision p and scale s. The precision p can range from 1 to 38. The scale s can range from -84...
View ArticleAll of my servers had the administrator username and passwords reset.
All of my servers are version 10 and are in development so they are not exposed to public. I also have a version 9 server running in production which is public. All of the 10 servers never had a...
View ArticleRe: Number field displays differently on two systems.
es336td wrote: I remove all designation and set to just NUMBER. From Oracle documentation...NUMBER(p,s) Number having precision p and scale s. The precision p can range from 1 to 38. The scale s can...
View ArticleRe: Number field displays differently on two systems.
The customer wants 8 digits after the decimal, however that can be accomplished. The Gov't DBAs I deal with ensured me that just changing the datatype to NUMBER would allow what I wanted without...
View ArticleColdfusion EAR distribution
We are currently developing a Coldfusion application where one of the requirements as set by the client, is that it should be distributed as a deployable EAR file. Our plan is to develop the...
View ArticleRe: Number field displays differently on two systems.
Mystery solved: the Gov't DBAs changed the wrong database. Once it was fixed, it worked. I hate having to depend on someone else to maintain one of my databases. Part of the job, though, so...
View ArticleRe: Number field displays differently on two systems.
es336td wrote: Mystery solved: the Gov't DBAs changed the wrong database.It was always going to be something like that. It's nice to hear the issue is solved.
View ArticleRe: CF 10, Consistent java.lang.NullPointerException at cflogin after 20 minutes
ColdFusion skips the cflogin tag when login credentials are still valid and active. Since the tag runs in your case, it can only mean that ColdFusion had logged the user out. It would therefore seem...
View ArticleRe: ColdFusion Splendor mail server verify error
Hi Carl, This works for me. Here is my mailsent.log "Severity","ThreadID","Date","Time","Application","Message""Information","scheduler-1","03/05/14","15:16:55",,"C:\ColdFusion11\cf...
View ArticleJNDI data source
I'm trying to use a JNDI data source in CF 10. We used to do it in CF 8 in the JRun admin, and was able to use data sources across coldFusion and java code. Any ideas on how to make it work in CF 10?...
View Articleremote solr server
Hi I'm runing ColdFusion 9.0.2 dev edition and I would like to setup a remote solr server. I setup 2 solr servers to test this: One with apache-solr and tomcat One with solr and jetty In the CF admin...
View ArticleCFwheels..update by ID
I've recently started using CFwheels. I am trying to update a database item by ID. Usually what I would do is have a hidden form field that passes an ID number in the value. Then I would run a query...
View Articlehow to change web server from inbuilt Tomcat to IIS in already configured...
how to change web server from inbuilt Tomcat to IIS in already configured Cold Fusion 10
View ArticleCFCLIENT generating JavaScript files instead of just code
Whenever the application sees <cfclient> tag it generates a <script> tag for the same. Is there anyway you can generate a JavaScript file instead of returning the script tag in the...
View ArticleCFCLIENT JavaScript code optimization technique
I wrote this in cfm: and observed that the script tag is generated containing the following code: globalDivStruct = null; var _$test_func = function () { var self = this; var variables = {};...
View ArticleRe: CFCLIENT JavaScript code optimization technique
your CFM code hasn't made it into your question. Can you edit the question to include the code please?
View ArticleRe: CFCLIENT JavaScript code optimization technique
<span class="test"><cfclient> <cfset variable1 = 10> <cffunction name="test1"> <cfoutput>#variable1#</cfoutput>...
View Article