JesseBethke.com
Divulgences into Web Design, Application Development, and Ponderings of Interest

Calendar

March 2008
Sun Mon Tue Wed Thu Fri Sat
« Dec   May »
 1
2345678
9101112131415
16171819202122
23242526272829
3031  

Meta

Archive for March, 2008

Search an XML File with SQL

Monday, March 3rd, 2008

There exists many vendors for database solutions, each of them with their own unique medium.  Frequently we have to move data between them or to a desktop application like Excel.  Generally a flat file is done to do this.  The most common is the CSV (Comma seperated values) or tab delimited file.  However, ever increasingly more popular is the XML format.  XML allows for the opportunity to store three dimensional data structures in a flat file. It also provides for a more descriptive nature; for example each data node is at least somewhat self aware of the data it represents.

(more…)

Compile Java at Runtime with Coldfusion

Sunday, March 2nd, 2008

We have all heard the rumors of dirty little exploits that allows coldfusion to interact with Java objects.  I’ve finally taken the time to prepare an example of how to write, compile, and use a java class at coldfusion run time.  Imagine a website that programs for us, or programs itself.
(more…)