No problem. Also it's a good idea to use <cfqueryparam> in all your queries when passing in values from elsewhere. Basically it helps performance and reduces chances of SQL injection. e.g.
<cfquery datasource="square" name="addGeo">
UPDATE glvar_daily_bulk
SET Latitude =<cfqueryparam value="#lat#" cfsqltype="cf_sql_float">,
Longitude = <cfqueryparam value="#long#" cfsqltype="cf_sql_float">
WHERE MLS_Id = <cfqueryparam value="#ListingShort.MLS_Id#" cfsqltype="cf_sql_integer">
</cfquery>