QueryNew(), JavaCast(), And Notes About Data Type Translation

Posted September 26, 2006 at 8:13 AM by Ben Nadel

Tags: ColdFusion

The ColdFusion query object is such a cool part of ColdFusion. And, I'm not just talking about getting data from a database. I'm talking about building queries from scratch and maintaining them programmaticly. The only small rub I can see in the situation is the fact that the data types used when creating a query are different from the ones used to set query cell values.

When you create a query via QueryNew(), you have the option to pass in a list of column names and column types. Or, you can leave these blank and add individual columns to the query, again passing in a column name and data type (and an array of values). When doing either of these, the possible data type values are:

  • Integer: 32-bit integer
  • BigInt: 64-bit integer
  • Double: 64-bit decimal number
  • Decimal: Variable length decimal, as specified by java.math.BigDecimal
  • VarChar: String
  • Binary: Byte array
  • Bit: Boolean (1=True, 0=False)
  • Time: Time
  • Date: Date (can include time information)

So, for example, if I wanted to create a simple query using data types, I could do so like:

  • <!--- Create girls query. --->
  • <cfset qGirls = QueryNew(
  • "name, hotness, is_curvey",
  • "VARCHAR, INTEGER, BIT"
  • ) />

Here we are explicitly telling the query to be instantiated with three columns. We are also telling it that the underlying data types of the columns are Varchar, Integer, and Bit. Now, here's the weird thing: ColdFusion is typeless, but query object data is not really typeless. Anyone who has manually altered a query and tried to run a query of queries probably has come across type conversion errors. That's because under the surface, these data types have to map to Java data types when running non-typeless SQL statements.

Now, how do you make sure that you set query cell data values with the proper type? You have to use JavaCast():

  • <!--- Add row to query. --->
  • <cfset QueryAddRow( qGirls ) />
  •  
  • <!--- Set column values. --->
  • <cfset qGirls[ "name" ][ 1 ] = JavaCast( "string", "Sarah Vivenzio" ) />
  • <cfset qGirls[ "hotness" ][ 1 ] = JavaCast( "int", 10 ) />
  • <cfset qGirls[ "is_curvey" ][ 1 ] = JavaCast( "boolean", 1 ) />

As you can see in this example, the Java data types are not exactly the ones that I chose for use in the QueryNew() call. That's because the set of Java data types is different:

  • boolean
  • int
  • long
  • float
  • double
  • string
  • null

It's gets a bit sticky when you see that there is not a Java data type for every QueryNew() data type. Take Date and Time for instance. There is no date or time data Java data types listed. If you need to set a value into a DATE field, you can pass in any value that can be interpreted as a date. In ColdFusion (and other languages), dates have both a string representation and a numeric representation. Take the date 01-01-1980 for instance. That can be represented in a query by any of the following:

  • {ts '1980-01-01 00:00:00'}
  • 29221.0
  • 29221

The first is the string time-stamp. The second is a float. The third is either an integer, long, or double. Therefore, when you need to set a date field manually, you can use any of the Java types string, int, long, float, or double.

But, that's for DATES only. If you need to set a date AND time value, it gets a bit tricky. Remember as a numeric value, the time is the decimal part of the floating point number. In that case you NEED the floating point number. No passing in int, long, or double as your data type. Only string or float will do.

I am not even sure how you would map the byte array QueryNew() data type from the Java types. But, I have not come across that yet, so no worries.

But any ways, be careful when you are setting query values. You cannot just throw typeless values into these cells. Remember, ColdFusion is typeless but SQL is not. Therefore, when you run a query of queries using SQL (a subset of), you CANNOT assume that ColdFusion will type everything out correctly. You have to be explicit.




Reader Comments

Dan
Jan 6, 2011 at 8:27 AM // reply »
2 Comments

Ben,

I have been trying to pass in a Date/Time that java will accept. In java I have

private Timestamp _requiredDeliveryDate;

and in CF I have tried several things and the latest being:

<cfset requiredDeliveryDate = dateformat(form.po_requiredDeliveryDate,"yyyy-mm-dd") & " " & timeformat(form.po_requiredDeliveryDateTime,"HH:mm:ss")>

<cfset myDate = JavaCast("float",requiredDeliveryDate)>

<cfset poObject.setRequiredDeliveryDate(myDate)>

But java will not accept and date/time I throw at it from cf.

Do you have any other suggestions of what I can try?

Thanks


Dan
Jan 6, 2011 at 9:41 AM // reply »
2 Comments

What I ended up with was passing the date/time in as a string to a method in java that will convert it to a timestamp and then set the correct variable in java. Not the way I would have liked but it's working.


Jan 6, 2011 at 9:56 AM // reply »
10,640 Comments

@Dan,

Since this post, I've started to rely on parseDateTime() as a way to create actual date/time stamps. Also, now() returns a date/time object:

<cfset dt = now() />
<cfdump var="#dt.getClass().getName()#" />

... gives you:

coldfusion.runtime.OleDateTime

This is also the data type that parseDateTime() returns. Also, if you get the super class of the date/time object:

<cfdump var="#dt.getClass().getSuperClass().getName()#" />

... you get the following:

java.util.Date

I don't know if this can be cast to the "timestamp" data type easily, but just some thoughts on it. Good to know that the time-as-string approach worked for you. Thanks for the insight.


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Feb 10, 2012 at 7:21 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
Update! Instead of $(eval(options.insertAfter)).after(data['insertData']); I now use: var ajaxNode = document.createElement('span'); var parent = $(eval(options.insertAfter))[0].parentNode; ... read »
Feb 10, 2012 at 6:18 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
encountered this same, what I consider, jQuery bug last week. I'm building a site in which I load some content via AJAX. This content contains Linkedin share button placeholders which Linkedin API ne ... read »
Feb 10, 2012 at 11:30 AM
Cross-Origin Resource Sharing (CORS) AJAX Requests Between jQuery And Node.js
After you understand the concepts here, this is an awesome cheatsheet for enabling CORS in just about anything http://enable-cors.org/ ... read »
JM
Feb 10, 2012 at 9:10 AM
My Safari Browser SQLite Database Hello World Example
@Amy, Here is a very good tutorial on how to use JOIN: http://www.sqltutorial.org/sqljoin-innerjoin.aspx ... read »
Feb 10, 2012 at 4:42 AM
Building A Twitter-Inspired RESTful API Architecture In ColdFusion
This is great, very useful Ben. I spotted a small typo in the api.cgm listing: <cfthrow type="Unauthroized" /> Cheers Stefan ... read »
Feb 9, 2012 at 10:35 PM
CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)
I was wondering if there would be a filter you could apply so that you got everything but what you included in the filter. As in show me all docs that are not a .pdf. ... read »
Feb 9, 2012 at 10:29 PM
Learning ColdFusion 9: Application-Specific Data Sources
@Ben, No offence, but if people were really wanting advanced features they would be using a platform like ASP.NET MVC. CFML is so structurally compromised as a tag-based scripting language that ... read »
Feb 9, 2012 at 10:03 PM
Subversion - Cleanup Failed To Process The Following Paths
@Leviaguirre, do you still have problems with this? ... read »