Posted on 1 Comment

GW Needs to See Sicko

Democratic lawmakers in Washington say they’re drafting a health care reform bill that would expand coverage for low-income kids. President Bush says he’ll veto any such legislation, warning that it would lead the nation "down the path to government-run health care for every American."

What’s particularly galling about Bush’s position is that it’s coming from a man who just underwent a colonoscopy performed at the taxpayer-funded, state-of-the-art medical facility at Camp David by an elite team of doctors from the taxpayer-funded National Naval Medical Center in Bethesda, Md.
[Source]

Posted on 2 Comments

Tech Issue of the Day

Today’s terribly frustrating error causing a long delay in a short process is:

Parameter index out of range (1 > number of parameters, which is 0).

It is the result of this simple insert:

<cfquery name="createrole" datasource="#application.gDataSrc#">
    INSERT INTO #application.projectidentifier#_theroletable {
       fooASInt,
       barAsInt
    } VALUES {
       <cfqueryparam cfsqltype="CF_SQL_INTEGER" value="#fooAsIntValue#">,
       104
    }
</cfquery>

UPDATE: Whoops. I see the typo! There is a big difference between {} and (). Should have been:

<cfquery name="createrole" datasource="#application.gDataSrc#">
    INSERT INTO #application.projectidentifier#_theroletable (
       fooASInt,
       barAsInt
    ) VALUES (
       <cfqueryparam cfsqltype="CF_SQL_INTEGER" value="#fooAsIntValue#">,
       104
    )
</cfquery>