Fig Leaf Software www.figleaf.com CF 5 Review Steve Drucker CEO Fig Leaf Software.

Slides:



Advertisements
Similar presentations
Yukon – What is New Rajesh Gala. Yukon – What is new.NET Framework Programming Data Types Exception Handling Batches Databases Database Engine Administration.
Advertisements

CF and JSP/Servlets Developed originally by Robi Sen For the CF UnderGround II Seminar, Apr 2001 Edited and enhanced by Charlie Arehart (Robi had an emergency.
SSRS 2008 Architecture Improvements Scale-out SSRS 2008 Report Engine Scalability Improvements.
Java Script Session1 INTRODUCTION.
Session 6 Server-side programming - ASP. An ASP page is an HTML page interspersed with server-side code. The.ASP extension instead of.HTM denotes server-side.
Week 5 IBS 520. ColdFusion Variables CF uses variables to store data in memory. There are many different types of variables; each has its own.
15 Chapter 15 Web Database Development Database Systems: Design, Implementation, and Management, Fifth Edition, Rob and Coronel.
Fast Track to ColdFusion 9. Getting Started with ColdFusion Understanding Dynamic Web Pages ColdFusion Benchmark Introducing the ColdFusion Language Introducing.
An Overview of Database Access on the Web An Overview of Database Access on the Web Using ASP and Microsoft Database Technology Sheffield Hallam University.
Week 2 IBS 685. Static Page Architecture The user requests the page by typing a URL in a browser The Browser requests the page from the Web Server The.
Form Handling, Validation and Functions. Form Handling Forms are a graphical user interfaces (GUIs) that enables the interaction between users and servers.
1 Web Database Processing. Web Database Applications Static Report Publishing a report is prepared from a database application and exported to HTML DB.
6/1/2001 Supplementing Aleph Reports Using The Crystal Reports Web Component Server Presented by Bob Gerrity Head.
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
INFM 603: Information Technology and Organizational Context Jimmy Lin The iSchool University of Maryland Thursday, October 18, 2012 Session 7: PHP.
SharePoint 2010 Business Intelligence Module 10: Reporting Services.
Basics of Web Databases With the advent of Web database technology, Web pages are no longer static, but dynamic with connection to a back-end database.
The Art of Debugging Shlomy Gantz 02/13/01MDCFUG.
What’s New in CF 8 Admin MDCFUG 8/14/2007 Ajay Sathuluri Sr. Web and Database Engineer TeraTech Inc.
COLD FUSION Deepak Sethi. What is it…. Cold fusion is a complete web application server mainly used for developing e-business applications. It allows.
Web Server Administration Chapter 7 Installing and Testing a Programming Environment.
ColdFusion MX Rob Filardo and Lindsay Matteo A Brief History ColdFusion 1.0 was created in 1995 by Adam Berrey in order to help HTML programmers create.
Introduction to ColdFusion Yu Fu 2003 MEC Candidate.
JAVA SERVER PAGES CREATING DYNAMIC WEB PAGES USING JAVA James Faeldon CS 119 Enterprise Systems Programming.
CPS120: Introduction to Computer Science Lecture 19 Introduction to SQL.
1 Maryland ColdFusion User Group Session Management December 2001 Michael Schuler
IIS 7.0 for CFML Developers Vince Bonfanti. Introduction Vince Bonfanti President and co-founder of New Atlanta Software developer by training and trade.
Oracle 10g Database Administrator: Implementation and Administration Chapter 2 Tools and Architecture.
March 12 & 13, 2007 IIS 7.0 for CFML Developers Deploying on IIS 7.0 with Adobe ColdFusion and New.
Introduction to RtReports – Tony Fenn & Chris Nelson Introduction to RtReports Chris Nelson - Senior Developer Tony Fenn - Product Manager.
Chris Wright Senior Systems Engineer, Lucity MOVING TO ONE DATABASE FOR SQL SERVER.
Improving Database Performance Derrick Rapley
A Brief Documentation.  Provides basic information about connection, server, and client.
Java Portals and Portlets Submitted By: Rashi Chopra CIS 764 Fall 2007 Rashi Chopra.
Introduction to PHP Advanced Database System Lab no.1.
CF Pest Control By Shlomy Gantz President, BlueBrick Inc. Presented by Sandra Clark
Basic HTML HTML document consists of text markup tags interspersed in the text Example: Example 1 Example 1 Here goes the text This is a second paragraph.
CF101: Welcome to ColdFusion Simon Horwith CTO, Etrilogy Ltd.
6/1/2001 Supplementing Aleph Reports Using The Crystal Reports Web Component Server Presented by Bob Gerrity Head.
The Future of ColdFusion Christian Cantrell ell.
IBM Office Connect 3.0 James Edmiston Consultant Quest Information Systems, Inc Mike Terrell IT Specialist IBM Data.
ASP. What is ASP? ASP stands for Active Server Pages ASP is a Microsoft Technology ASP is a program that runs inside IIS IIS stands for Internet Information.
DATABASE CONNECTIVITY TO MYSQL. Introduction =>A real life application needs to manipulate data stored in a Database. =>A database is a collection of.
CF Database I Jeff Peters Why Are You Here? Data and Persistence ODBC Relational vs. Flat SQL CFQUERY, CFOUTPUT, CFLOOP Practicum.
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
WEB SERVER SOFTWARE FEATURE SETS
Advance Caching Techniques Keen Haynes MKAD SCCFUG Winter 2002 Conference.
30 Copyright © 2009, Oracle. All rights reserved. Using Oracle Business Intelligence Delivers.
Module 6: Administering Reporting Services. Overview Server Administration Performance and Reliability Monitoring Database Administration Security Administration.
Text TCS INTERNAL Oracle PL/SQL – Introduction. TCS INTERNAL PL SQL Introduction PLSQL means Procedural Language extension of SQL. PLSQL is a database.
21 Copyright © 2009, Oracle. All rights reserved. Working with Oracle Business Intelligence Answers.
Oracle Business Intelligence Foundation - Commonly Used Features in Repository.
Oracle Business Intelligence Foundation – Testing and Deploying OBI Repository.
Singleton Academy, Pune. Course syllabus Singleton Academy Pune – Course Syllabus1.
Putting it all together Steve Drucker CEO Fig Leaf Software.
JavaScript Invented 1995 Steve, Tony & Sharon. A Scripting Language (A scripting language is a lightweight programming language that supports the writing.
Cool CF Debugging Shlomy Gantz 07/29/01CF_ODYSSEY.
1 Copyright © 2008, Oracle. All rights reserved. Repository Basics.
1 Copyright © 2005, Oracle. All rights reserved. Oracle Database Administration: Overview.
Running a Forms Developer Application
Introduction to Dynamic Web Programming
W04 Connecting 3rd Party Application to ODBC
SQL and SQL*Plus Interaction
CF101: Welcome to ColdFusion
PHP Training at GoLogica in Bangalore
PHP / MySQL Introduction
Nate Nelson I*LEVEL, Inc.
Presentation transcript:

Fig Leaf Software CF 5 Review Steve Drucker CEO Fig Leaf Software

Fig Leaf Software Introduction Industry/CF News Job Announcements Sign up for the listserv! Today’s Schedule

Fig Leaf Software Session Overview New Language Features New 3 rd party integration Database Support CF Administrator enhancements

Fig Leaf Software New Language Features Query of Queries User Defined Functions using Enhancements to objects GetHTTPRequestData

Fig Leaf Software Running “queries of queries” CF5 allows you to run queries against recordsets stored in memory from a tag Join the results of two queries together in memory (simulating sql stored procedure temp table functionality) CF5 supports a minimal subset of the ANSI standard Group By Order By Aggregate Functions (Count, Sum, Avg, Max, Min) As Boolean (Not, Like, IN, Between, AND, OR DML (Outer Join syntax)

Fig Leaf Software Running a query against a recordset select lastname,firstname from person order by lastname select * from getemp order by firstname

Fig Leaf Software User-Defined Functions using (introduced in CF 3.x) now gets javascript-like function support functions will perform better than calling CFML custom tags UDF’s can be recursive

Fig Leaf Software User Defined Functions using function addit(x,y) { var total=x+y; return total; } #myval#

Fig Leaf Software caches the HTML output of all CFML constructs within the tags Enables the caching of specified sections of a page for later recall Similar to in Allaire Spectra and other tags currently available on the Allaire Tag Gallery Operates faster than the tags on the Gallery NOTE: All output is suppressed within the tags

Fig Leaf Software select * from empemployees #firstname# #lastname# #session.mycontent#

Fig Leaf Software Flushes the current ColdFusion output buffer Use it to start sending output to the web client before the page has fully completed processing After a has executed, the following tags will generate an exception: CFCONTENT CFCOOKIE CFFORM CFHEADER CFHTMLHEAD CFLOCATION

Fig Leaf Software select personfname,personlname from person #personfname# #personlname#

Fig Leaf Software Programmatically create a log entry in any of the standard log files (or create your own!) Generate application-specific, scheduled task, and custom logs Limit logs by size and entries by age Utilize the new CFADMIN log viewers to view logs Writes out information comma-delimited Type Thread Date Time Application

Fig Leaf Software <CFLOG text=“Completed Process Successfully” log=“Application” Type=“Information” Thread=“Yes” Date=“Yes” Time=“Yes” Application=“Yes”>

Fig Leaf Software Enhancements to The CFTextInput, CFSLIDER, CFTREE, and CFGRID tags were completely rewritten The controls run more consistently in JVM’s The tag now has a preservedata attribute that will autoload information into a control if the page submits to itself. Users are prompted to install the Java 1.3 runtime from the web

Fig Leaf Software GetHTTPRequestData Makes HTTP Request Headers available for potentially capturing SOAP request data Information is returned in a structure

Fig Leaf Software Graphically dumps the contents of ANY CF variable Available in Beta 3?

Fig Leaf Software New 3 rd Party Integration Verity has been upgraded from Search ’97 to Verity VDK Graphing will be available in Beta 3 using a subset of Macromedia Generator, Developer Edition ( tag) A new version of Netegrity Siteminder is being integrated (CF Advanced Security) Crystal Reports 8 reports are now supported

Fig Leaf Software Database Support Allaire has licensed a new set of MERANT database drivers Some datasources will now be able to be set up “clientless” Sybase Informix 9 Oracle? CF now supports DSNless Connections

Fig Leaf Software DSNless Connections You can specify a connection string for odbc datasources <CFQUERY NAME="getpeople" DATASOURCE="__DYNAMIC__" DBTYPE="dynamic" blockfactor="100" connectstring="DRIVER={SQL SERVER}; SERVER=(local); UID = sa; PWD= ; DATABASE=uikitdevsample"> select firstname,lastname from empemployees

Fig Leaf Software Administration Enhancements Revamped CF Administrator SNMP Support Application/Server Backup and Restore (Harvest)