Why is cfml not a real programming language?What is the reasons for this?
What happens when the read attribute rights of the coldfusion server to a file is revoked?
Revoking read basically takes out all permissions on that file.
In simplest term we cannot load any file (CFM or txt).
What is used to replicate sessions between instances in coldfusion clusters?
Enterprise level CF applications use separate clustering software with sticky session approach to use multiple webservers clustering. But to use coldFusion clustering for multiple instances ( can be on same server) we need to perform J2EE clustering.
ColdFusion can have client side non-coldfusion codes (Like JavaScript, Jquery). It cannot have client side coldfusion codes.
coldfusion is used mostly is serverside because of security reasons only.. But ican be used in client side too
StruCTCopy() and structduplicate()
Explain how struCTCopy() and structduplicate() differ from one another
Here we go.There are two types of structure:1. nested structure 2. Simple structure.For 1 st ,copied structure will not have the reference pointing towards the original so if you change the ...
The best example is given in livedocs.
Please have a look at it and let me know if you have any doubt.
Post some challenging question
http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=00000635.htm
What option is used to ftp files to or from the coldfusion server?
You may use cfftp tag to access, upload and list files inside a secure ftp server.
If you already have an FTP account with a remote host, you can use the CFFTP tag to transfer files between your computer and your host right in your ColdFusion application.
D:
What can be used in coldfusion to loop through url or form members?
We can use cfloop = "collection" attribute to loop over form and url. Form and URl comes in Structure format.
What can be used to facilitate transfer of data to the coldfusion server?
cfqueries can be used
What is query of query concept?
Creating a Database Query/Queries that uses the existing query's output without accessing the database tablesfor example:<cfquery>db query reference : #existing query name.ID or name ....
What can be used to create connections between your coldfusion web sites and databases?
A DSN is used. These are set up in CF administrator and used in query code to connect to a database.
What can be used in coldfusion to control concurrent access to a block of code or a scope?
Is it possible to nest cfml conditional tags?
Yes, this is possible for example:
<cfif...>
<cfif...>
<cfif...>
The example of nesting of cfml loop while grouping the emloyees through department..one cfoutput loop is nested inside the other...
Yes it supports both .. client as well as session variables
What are the databases that are supported by coldfusion applications?
All relational and non relational databse like Oracle,MSAccess,mysql
What are the types of lock supported by <cflock>?
What can be used to transfer files between a client browser and coldfusion?
the safest way to trasfer files from a client computer to coldfusion is to use Http file upload.
What is the usage of cfdirectory in coldfusion?
What is the extension with which the cfml gets saved in files?
it is .cfm
What is REAL? Is there any VIRTUAL language. Any piece of code that perform some action is a language. How meaningful the action is is a different issue. So binary is as programming language as C, jav...
No, it is not a real programming language. it is just a markup language.