By Phil Cruz, Dick Applebaum | Article Rating: |
|
March 15, 2005 12:00 AM EST | Reads: |
20,375 |
When we last left our two intrepid heroes they had just shown us how to create and run our first CFEverywhere application (including installing and configuring its requisite CFML server, application server, and Web server).
Once installed, we were able to move our "package" (application and accompanying servers) to any hard drive and run it without change (we will exploit this capability later). In Part 1 we:
- Discussed the reasons and advantages of deploying applications as CFEverywhere packages
- Examined some applications that would benefit from this approach
- Installed the Jetty J2EE server
- Deployed the BlueDragon/J2EE CFML engine
- Wrote and installed our first CFEverywhere application
In this article, we will add a relational database server to our CFEverywhere package. This will allow us to run most any CFML application we desire on the desktop. A simple database-driven CFML application and sample data is provided so that we can validate the package and demonstrate it in action. Let's get started!
The first step is choosing the database server component. When selecting a database we had these requirements:
- Free for commercial use and distribution
- Cross-platform
- Embeddable, small footprint
- Easy to install/configure/administer
- Strong developer community
Derby is not the only database that is suitable for CFEverywhere. You are free to choose any database that meets your requirements. If you are targeting only the Windows platform you may choose to use an Access database. Daffodil One$DB (www.daffodildb.com/one-dollar-db.html) is another Java-based database that looks suitable.
The Derby project Web site is located at http://incubator.apache.org/derby/. There's a lot of good documentation about the database on the Web site. We recommend reading it to become more familiar with the product. Follow the links on the site and download the Derby package from http://cvs.apache.org/dist/incubator/derby/10.0.2.1/incubating-derby-10.0.2.1-bin.zip. Extract the zip file into your CFEverywhere folder and rename the folder to Derby. IBM hosts the Derby JDBC drivers. Go to www.ibm.com/developerworks/db2/downloads/jcc/ to download the drivers. You will have to follow several links and complete a free registration. The download package is called "Released product: IBM Cloudscape (IBM DB2 JDBC Universal Driver, for Cloudscape/Derby)" and the filename is db2jcc_for_derby.zip.
After you have downloaded the file, extract the contents and copy db2jcc_license_c.jar and db2jcc.jar to cfeverywhere\server\wwwroot\WEB-INF\lib. The lib directory is on BlueDragon's classpath so you won't have to add the driver files to the classpath.
To see if Derby is working let's try to invoke the sysinfo utility. At the command line, create an environment variable pointing to the Derby directory:
On Windows
set DERBY_INSTALL=c:\cfeverywhere\derby
Note: Be careful not to put any spaces around the equal sign. Then add the Derby JARs to the classpath:
set CLASSPATH=%DERBY_INSTALL%\lib\derby.jar; %DERBY_INSTALL%\lib\derbytools.jar;%CLASSPATH%
Note: That should all be entered as one line.
On Mac OS X and Linux
export DERBY_INSTALL=/Applications/cfevery where/derby export CLASSPATH=$DERBY_INSTALL/lib/derby.jar: $DERBY_INSTALL/lib.derbytools.jar:$CLASSPATH
Note: That should all be entered as one line.
Invoke sysinfo with:
java org.apache.derby.tools.sysinfo
If you did everything correctly, you should see information about Java and Derby. In addition to sysinfo, Derby comes with a command-line utility called "ij" for interacting with the database. We'll use ij to create an empty database. At a command line type:
On Windows
cd \cfeverywhere\derby java org.apache.derby.tools.ij
On Mac OS X and Linux
cd /Applications/cfeverywhere/derby java -Dderby.storage.fileSyncTransactionLog=true\ org.apache.derby.tools.ij
Note: The extra system parameter for the transaction log on the command line is actually only required for OS X due to a JVM issue with Derby on that platform. Then at the ij> prompt type:
ij>connect 'jdbc:derby:test;create=true'; ij>exit;
(Don't forget the semicolons at the end of the command line.) If you go to the Derby directory you will notice a test subdirectory was created. This directory contains all the files that represent the test database. Ij is just a command-line utility but it doesn't actually start Derby in network mode. To do that we need to call the NetworkServerControl class; we'll create a batch file (or a shell script) to simply the process.
On Windows
Create a file startdb.bat that looks like this:
@echo off chdir>~.tmp FOR /F "eol=; tokens=1-17 delims=#" %%a in (~.tmp) do set dirnow=%%a del ~.tmp SET DERBY_INSTALL=%dirnow%\derby SET DERBY_SYSTEM_HOME=%dirnow%\derby FOR %%X in ("%DERBY_INSTALL%") DO SET DERBY_INSTALL=%%~sX set CLASSPATH=%DERBY_INSTALL%\lib\derby.jar;%DERBY_INSTALL%\lib\derbytools.jar; %DERBY_INSTALL%\lib\derbynet.jar;%CLASSPATH% cd derby java org.apache.derby.drda.NetworkServerControl start
Note: Each command is on a separate line.
On Mac OS X and Linux
Create a file startdb.sh that looks like this:
dirnow=`pwd` export DERBY_INSTALL=$dirnow/derby export CLASSPATH=$DERBY_INSTALL/lib/derby jar:$CLASSPATH export CLASSPATH=$DERBY_INSTALL/lib/derbytools jar:$CLASSPATH export CLASSPATH=$DERBY_INSTALL/lib/derbynet jar:$CLASSPATH cd derby java org.apache.derby.drda.NetworkServerControl start
Note: Each command is on a separate line.
Make sure the file has proper permissions. Execute the bat file (or run the shell script) and you should see:
Server is ready to accept connections on port 1527.
Derby is up and running!
In Part 1 of this series we ran a simple "Hello CFEverywhere" CF application to demonstrate that CF was installed and working. Now that we have the Derby database system installed, we need a simple application that will utilize this capability and demonstrate a database-enabled CFEverywhere environment. Download the following three files from the URL at the end of this article and copy them to your wwwroot directory:
- derbyprimeemployees.cfm
- employees.txt
- derbyemployeesdrilldown.cfm
cd \cfeverywhere\server java -jar start.jar etc/cfeverywhere.xml
Point your browser to the BlueDragon administrator at http://localhost:8080/bluedragon/admin.cfm.
Click the datasources link and set up a datasource with the following parameters (see Figure 1):
Datasource Name: DerbyTest Driver: com.ibm.db2.jcc.DB2Driver URL: jdbc:derby:net://localhost:1527/test; User Name: myusername Password: mypassword
After you create the datasource make sure to verify the connection. With our datasource defined, we can use CF to create and populate the database tables (see Figure 2).
Point your browser to: http://localhost:8080/derbyprimeemployees.cfm.
This template:
- Drops any existing Employees Table
- Creates a new Employees Table
- Reads the employees.txt CSV file
- Iterates over the CSV file inserting records into the database
- Reads all the records from the database and dumps them into the browser
Next, point your browser to (see Figure 3): http://localhost:8080/derbyemployeesdrilldown.cfm.
This is a simple program that allows you to page-through the records in the database.
Ta-dah! We've met the objective of this article - we have a database-driven CFEverywhere application running locally, giving the appearance of a traditional desktop application.
Experiment! Add your own applications and databases. As before, move the cfeverywhere directory around - even to a different platform. It's also worth noting that although the sample applications we've demonstrated have been very simple, it is only due to the scope of this article. CFEverywhere applications can utilize all CFML tags/functions including ColdFusion components and Web services. They can also use popular application frameworks such as Mach-II and Fusebox.
And, as if what we've shown so far isn't enough, come back next month for Part 3. We'll show you how to package your CFEverywhere application to deliver the ultimate user-experience.
To access your application, the user will be able to:
- Download the application (or insert a CD).
- Double-click an icon.
- That's it! There is no Step 3.
To download the files used in this article go to http://philcruz.com/cfeverywhere/downloads/cfeverywhere_files_part2.zip.
Published March 15, 2005 Reads 20,375
Copyright © 2005 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Phil Cruz
Phil Cruz is a Macromedia Certified Advanced ColdFusion developer and has over 12 years of experience in the computing industry. He is responsible for www.mach-ii.info, a community site for the Mach-II framework. As a micro-ISV, he created Tracking Tools, an easy-to-use bug tracking application built with Mach-II (www.tracking-tools.com).
More Stories By Dick Applebaum
Dick Applebaum has been involved with computers (and their predecessors) since 1956, including 16 years with IBM. Dick and two partners opened the fifth retail computer store in Silicon Valley in 1978. Eleven years later, he sold the stores and didn?t touch a computer for seven years (when he discovered the Web). Since 1997, Dick has been developing applications using ColdFusion.
Apr. 20, 2018 03:45 AM EDT Reads: 1,817 |
By Elizabeth White ![]() Apr. 20, 2018 12:45 AM EDT Reads: 4,613 |
By Liz McMillan ![]() Apr. 19, 2018 11:00 PM EDT Reads: 9,806 |
By Liz McMillan ![]() Apr. 19, 2018 10:45 PM EDT Reads: 22,344 |
By Maria C. Horton ![]() Apr. 19, 2018 09:30 PM EDT Reads: 13,523 |
By Elizabeth White ![]() Apr. 19, 2018 08:30 PM EDT Reads: 1,002 |
By Elizabeth White ![]() Apr. 19, 2018 07:00 PM EDT Reads: 5,941 |
By Pat Romanski Apr. 19, 2018 02:00 PM EDT Reads: 2,042 |
By Pat Romanski Apr. 19, 2018 01:45 PM EDT Reads: 1,144 |
By Pat Romanski Apr. 19, 2018 01:30 PM EDT Reads: 2,063 |
By Elizabeth White Apr. 19, 2018 01:30 PM EDT Reads: 1,563 |
By Liz McMillan Apr. 19, 2018 01:15 PM EDT Reads: 1,584 |
By Pat Romanski ![]() Apr. 19, 2018 12:45 PM EDT Reads: 5,221 |
By Liz McMillan ![]() Apr. 19, 2018 12:45 PM EDT Reads: 3,642 |
By Yeshim Deniz Apr. 19, 2018 12:30 PM EDT Reads: 3,889 |
By Yeshim Deniz Apr. 19, 2018 12:15 PM EDT Reads: 4,863 |
By Liz McMillan ![]() Apr. 19, 2018 11:00 AM EDT Reads: 7,012 |
By Yeshim Deniz ![]() Apr. 19, 2018 08:30 AM EDT Reads: 1,838 |
By Liz McMillan Apr. 19, 2018 08:15 AM EDT Reads: 2,463 |
By Yeshim Deniz Apr. 19, 2018 08:00 AM EDT Reads: 3,003 |