41.What is the difference between CFQUERY and CFSTOREDPROC tags? When should we use them?Both the tags have their own context to use them. 42.What is CFINSERT and CFUPDATE?Inserts/Updates records in data sources from data in a ColdFusion form or form Scope. 43.What is CFDBINFO tag?This tag retrieves information about a data source, including details about the database, tables, queries, procedures, foreign keys, indexes, and version information about the database, driver, and JDBC. 44.What is query of query in coldfusion?A query that retrieves data from a record set is called a Query of Queries.You just need to mention dbtype = “query” in cfquery tag to do QoQ. 45.What are event gateways in coldfusion?ColdFusion event gateways are ColdFusion elements that let ColdFusion react to or generate external events or messages in an asynchronous manner. 46.What is fusebox?Fusebox is a framework for building web applications. It is meant to make your applications easier to create and maintain 47.Which is efficient isDefined() or structKeyExists()? Why?These days (CF8+) the difference in speed is not that great. However, structKeyExists is indeed a little faster. Here's why.
On the other hand, structKeyExists only searches the structure you pass it for the existence of the key name; so there are far fewer places it will have to look. By using more explicit code (structKeyExists), not only are you gaining some performance, but your code is more readable and maintainable, in my opinion. 48.What are CFFILE tag actions?Manages interactions with server files. Following are the actions of the cffile tag:
49.What are the different actions in CFPDF tag?
Add a watermark to a PDF document
<cfpdf action = "addwatermark"> Delete pages from a PDF document <cfpdf action = "deletepages"> Retrieve information about a PDF document <cfpdf action = "getinfo"> Merge PDF documents into an output PDF file <cfpdf action = "merge"> Set passwords and encrypt PDF documnets <cfpdf action = "protect"> Remove a watermark from a PDF document <cfpdf action = "removeWatermark"> Set information about a PDF document <cfpdf action = "setinfo"> Write a PDF document to an output file <cfpdf action = "write"> 50.?
51.?
52.?
53.?
54.?
55.?
56.?
57.?
58.?
59.?
60.?
|