From a6d4f7e14684c5419a5c050ca49fd45390bad051 Mon Sep 17 00:00:00 2001 From: "Joshua C. Overgaard" Date: Wed, 20 Aug 2025 14:29:46 -0400 Subject: [PATCH] Added default CFSSqlType -- CF_SQL_CHAR CFSqlType was missing the default value and leading to the possible impression that it was a required field (despite correctly noting that it's not.) --- data/en/cfqueryparam.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/en/cfqueryparam.json b/data/en/cfqueryparam.json index 5f208199f..7d5cbfe60 100644 --- a/data/en/cfqueryparam.json +++ b/data/en/cfqueryparam.json @@ -19,7 +19,7 @@ "name": "cfsqltype", "description": "SQL type that parameter (any type) is bound to. As of CF11+ or Lucee4.5+ you can omit the `cf_sql_` prefix. \nSee [CFSqlType Cheatsheet](https://cfdocs.org/cfsqltype-cheatsheet) for a mapping of CFSQL data types to DBMS data types.", "required": false, - "default": "", + "default": "CF_SQL_CHAR", "type": "string", "values": [ "cf_sql_bigint",